开发者

Writing XML Nodes in QtXML (QDomElement)

I would like to write Nod开发者_运维知识库es like

<name>Peter</name> 

(with start and end tag) into a QDomDocument.

When I create QDomElements and append them as child to a parent element:

QDomElement node = doc.createElement("node");
parent.appendChild(node);

They are added as

<node/>

to the parent element. The parent automatically gets a start and end tag so the file would look like this:

<parent>
    <node/>
</parent>

But how do I add a value to my node so that it looks like I want it (with value between start and end tag). Adding a new QDomElement as child to node it would just look like . Adding attribute would show up like ?

Would be great if anyone could help me! Thanks!


Create a text node using DOM Document, and add it to your newly created element as a child:

QDomElement node = doc.createElement("name");
parent.appendChild(node);
// Now, add a text element to your node
node.appendChild( doc.createTextNode( "Peter"));
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜