Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
271 views
in Technique[技术] by (71.8m points)

c++ - Reading an XML file using QXmlStreamReader

I want to read an XML file using QXmlStreamReader, but I really don't know where the problem is. My function reads the content of the first tag, but then it stops.

The form of the XML file:

 <?xml version="1.0" encoding="utf-8"?>
    <student>
        <firstName>mina</firstName> 
        <lastName>jina</lastName>
        <grade>13</grade>
    </student>
    <student>
        <firstName>Cina</firstName> 
        <lastName>fina</lastName>
        <grade>13</grade>
    </student>

The function:

void MainWindow::open() {
    QFile file(QFileDialog::getOpenFileName(this,"Open"));
    if(file.open(QIODevice::ReadOnly)) {
        QXmlStreamReader xmlReader;
        xmlReader.setDevice(&file);
        QList<Student> students;
        xmlReader.readNext();
        //Reading from the file
        while (!xmlReader.isEndDocument())
        {
            if (xmlReader.isStartElement())
            {
                QString name = xmlReader.name().toString();
                if (name == "firstName" || name == "lastName" ||
                        name == "grade")
                {
                    QMessageBox::information(this,name,xmlReader.readElementText());
                }
            }else if (xmlReader.isEndElement())
            {
                xmlReader.readNext();
            }
        }
        if (xmlReader.hasError())
        {
            std::cout << "XML error: " << xmlReader.errorString().data() << std::endl;
        }
    }
}
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

The problem was in the form of the XML document. I needed to create a root tag.

The new form of the document is:

<?xml version="1.0" encoding="utf-8"?>
    <students>
        <student>
            <firstName>mina</firstName> 
            <lastName>jina</lastName>
            <grade>13</grade>
        </student>
        <student>
            <firstName>Cina</firstName> 
            <lastName>fina</lastName>
            <grade>13</grade>
        </student>
    </students>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...