How to read an XML file from the disk using Qt?

7.2k Views Asked by At

I want to read an xml file as follow:

QFile myFile("xmlfile");  

and then continue with parsing the xml starting from :

QXmlStreamReader xmlData(myFile);

.. the error I get is:

no matching function for call to 'QXmlStreamReader::QXmlStreamReader(QFile&)'

so what is the problem and how to solve it ?


question update: Based on the selected answer below, the code is now working without a syntax error .

however, I can not read my xml. when parsing the xml, I use the following to read xml elements:

QXmlStreamReader::TokenType token = xmlElements.readNext();

then this code for checking the startElements:

 while(!xmlElements.atEnd() && !xmlElements.hasError()){ // the breakpoint is here
 do ...
 }

so, at this breakpoint, I notice in my debuger that token value is QXmlStreamReader::Invalid(1)

so, what is going on .. is my QStreamReader does not read the file as xml, or it read it but there is an error with the xml itself ?

3

There are 3 best solutions below

0
On

I found the problem and everything is now working properly

here is the mistake: by previously using the following code:

QFile myFile("xmlfile");
QXmlStreamReader xmlData(&myFile);

the file is first created in the first line, the second line of code just pass the file as it not its xml content (since it is not been opened yet), therefore the QXmlStreamReader::errorString returns Premature end of document ..

the solution is very simple: open the "myFile" file before passing it to the QXmlStreamReader using the following code:

xmlData.open(QIODevice::ReadOnly);

The device is now open for reading by QXmlStreamReader. and the final code is:

QFile myFile("xmlfile");
myFile.open(QIODevice::ReadOnly);
QXmlStreamReader xmlData(&myFile);
1
On

I read XML files a little differently in QT, I read them and store them in a seperate object, since I read and parse a lot of XMLs.

I'll post a sample for you, this sample runs off of XML attributes, if your looking for XML tags it wouldn't work.

    QDomDocument XMLfile;

    QFile XMLfile(XMLpath);
    if (!XMLfile.open(QIODevice::ReadOnly | QIODevice::Text))
    {
        // Error
    }
    if (!XMLfile.setContent(&XMLfile))
    {
        // Error
    }
    XMLfile.close();

    QDomElement root = XMLfile.firstChildElement();
    QDomElement item = root.firstChildElement();

    XMLstorage* currentXMLstorage = new XMLstorage();

    currentXMLstorage->Attribute1(item.attribute("Attribute1"));
    currentXMLstorage->Attribute2(item.attribute("Attribute2"));
    currentXMLstorage->Attribute3(item.attribute("Attribute3"));
    currentXMLstorage->Attribute4(item.attribute("Attribute4"));
    currentXMLstorage->Attribute5(item.attribute("Attribute5"));
    currentXMLstorage->Attribute6(item.attribute("Attribute6"));

    return *currentXMLstorage;
7
On

The error message is telling you that there is no constructor for the class QXmlStreamReader with the signature you are trying to invoke, i.e. the one that would accept QFile parameter alone (either by value or by reference). Reading documentation is quite helpful. Relevant extract:

QXmlStreamReader ()
QXmlStreamReader ( QIODevice * device )
QXmlStreamReader ( const QByteArray & data )
QXmlStreamReader ( const QString & data )
QXmlStreamReader ( const char * data )

Now, if you know that QFile actually inherits QIODevice (what you can find out in the documentation too), then you can immediately understand that the invocation should be changed as follows:

QXmlStreamReader xmlData(&myFile);

Furthermore, it seems like you don't know how to utilize QXmlStreamReader at all, therefore what you are looking for is a tutorial. I don't feel like rewriting great Qt tutorials here. So to intercept all your further questions, I'd refer you to the official tutorial.