This is the xml-file:
<?xml version="1.0" encoding="UTF-8"?>
<Text>alpha beta</Text>
<Text>beta gamma</Text>
<Text>gamma delta</Text>
<Text>delta epsilon</Text>
<Text>epsilon golf</Text>
And this is my reader:
QXmlStreamReader inputStream(&dataFile);
while (!inputStream.atEnd() && !inputStream.hasError())
{
inputStream.readNext();
if (inputStream.isStartElement())
{
QString name = inputStream.name().toString();
if (name == "Text")
{
qDebug() << "text:" << inputStream.readElementText();
}
}
}
And my qDebug only prints: text: "alpha beta"
Why does it only return one value and how can I correct this?
BR
As Frank correctly noted in the comment, a valid XML document can only have one root element. Once, you fix the data file content, it will work, but I am providing all the content I used during the testing on my machine, anyway.
test.xml
main.cpp
main.pro
Build and Run
Output