Some words about QT Dom node, element and attribut

Source: Internet
Author: User
Tags processing instruction

Add instruction Node

Every valid XML must contain Processing Instruction. XML is widely used for HTML, SVG, XLS etc. so make sure your xml file has valid instruction of its type and encoding. the following line is a sample XML Processing Instruction.

<?xml version="1.0" encoding="UTF-8"?>
Skip instruction node while reading XML

I don't know how you read XML nodes and values. most examples out there use parent and child counts. obviusly, Dom Processing Instruction is a node. let's refer the following XML file.

<?xml version="1.0" encoding="UTF-8"?><properties> <node type="user">minhaz</node> <node type="os">linux</node> <node type="version">3.2.0-37</node></properties>

A valid XML must start with a root element. Here Properties Is a root element. It has 3 child nodes. Each node has Node Value And Attribute . So how do we parse the whole XML? If we refer the whole document as a node, then the first line, processing instruction, will be regarded as a node. so properties will be the 2nd child node, but technically, it is the first/root node. so instead of using Document. childnodes (). At (1) Method, we cocould use Document. nameditem ("properties ") To get list of all child nodes under properties tag. Here is a sample code.

QDomDocument document;document.setContent(xmlString);QDomNode root = document.namedItem("properties");QDomNodeList nodes = root.childNodes();for(int i=0;i<nodes.count();i++){    qDebug() << "Type: " << nodes.at(i).toElement().attribute("type")      << " Value: " << nodes.at(i).toElement().text();}

And this will result into the following output.

Type:  "user"  Value:  "minhaz" Type:  "os"  Value:  "linux" Type:  "version"  Value:  "3.2.0-37"

Any more confusion? Or a better method? Let me know.

Create XML and write into File

Parsing XML is easy. The structure is already preset there. Just detect the hierarchy and parse. But what about creating your own? Perhaps from an user defined directory tree? I went into this painful issue, and then found the correct solution.

What if we try to generate an XML from the previous text output. Assume that we have two string lists.

QStringList attributeValues = QStringList() << "user" << "os" << "version";QStringList nodeValues = QStringList() << "minhaz" << "linux" << "3.2.0-37";

We need to create an XML using these strings, and with a processing instruction. Lets get started.

First, create a DOM document. (Don't blame me unless you addedQt + = xmlTo your project file) then declare a qdomdocument object.

QDomDocument document;

Now create a qdomprocessinginstruction object with correct encoding and XML version. Then add it as child node of document.

QDomProcessingInstruction header = document.createProcessingInstruction("xml", "version=\"1.0\" encoding=\"UTF-8\"");document.appendChild(header);

Now move to root node with tagnameProperties. Create a qdomelement object and append it to root.

QDomElement root = document.createElement("properties");document.appendChild(root);

Then we will add child nodes underPropertiesTag. Most people might think that the following line wocould ADD child nodes under root.

QDomNode child;root.appendChild(child);

NO! That is wrong . you must create every node or elements using the reference of document. just keep in mind that there might be more than one provided ENTs in codes. so you shoshould not mess with parents and Childs. the following lines will generate child nodes under properties tag.

QDomElement node = document.createElement("node");root.appendChild(node);

Did you spot the difference? You have to useDocument. createelement, Not root. appendchild method. As we have a list of strings, so we can use a loop to create all nodes and set values to them.

for(int i=0;i<attributeValues.size();i++){    QDomElement node = document.createElement("node");    node.setAttribute("type",attributeValues.at(i));    root.appendChild(node);    QDomText value = document.createTextNode(nodeValues.at(i));    node.appendChild(value);}

The code looks pretty clear. Create an element, set its attribute and append it to root. The 2nd block is used to set the value of that node.

To write the XML into file, open a qfile object, open it and flush the document onto it.

QFile xml("new-xml-file.xml");xml.open(QIODevice::WriteOnly);xml.write(document.toByteArray());xml.close();

Here is the output.

<?xml version="1.0" encoding="UTF-8"?><properties> <node type="user">minhaz</node> <node type="os">linux</node> <node type="version">3.2.0-37</node></properties>

That is enough for basic xml r/W actions. If you want to learn more or go deeper, run QT assistant. They have really awesome and detailed documents out there.


Some words about QT Dom node, element and attribut

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.