Parse QString with QXmlStreamReader

147 Views Asked by At

I'm trying to parse this QString that contains XML. This is the content

<Field_A>xxx_1</Field_A>
<Field_B>xxx_2</Field_B>
<Field_C>xxx_3</Field_C>
...

This XML has no root node.

This is the code that I've used to parse the XML:

QString xmlString = "<Field_A>xxx_1</Field_A><Field_B>xxx_2</Field_B><Field_C>xxx_3</Field_C>"

QXmlStreamReader xmlReader(xmlString);

while (!xmlReader.atEnd() && !xmlReader.hasError()) 
{
    xmlReader.readNext();

    if (xmlReader.name() == "Field_A") 
    {
        qDebug() << "Field_A: " << xmlReader.readElementText();
        continue;
    }
    
    if (xmlReader.name() == "Field_B") 
    {
        qDebug() << "Field_B: " << xmlReader.readElementText();
        continue;
    }

    if (xmlReader.name() == "Field_C") 
    {
        qDebug() << "Field_C: " << xmlReader.readElementText();
        continue;
    }
}

The output is:

xxx_1
""

Why can't I read all node values?

0

There are 0 best solutions below