2

我使用 QDomDocument 来编写 XML 文档。
但是在我的 dom 树中,有些节点是使用 docA 创建的,有些是使用 docB 创建的。

QDomElement parentNode = docA.CreateElement("name");//created by docA
QDomElement childNode = docB.CreateElement("value");//created by docB
parentNode.appendChild(childNode);//in onr tree

和:

QTextStream out(&file);
docA.save(out, Indent);//docA created the root QDomElement
                       //write the file using docA      

那么是否可以像这样将整个树写入 XML 呢?

4

1 回答 1

5

你应该避免这种情况,因为如果 docA 超出范围,如果 docB 仍在使用,事情就会开始出错。我相信您的提议在技术上会起作用,直到发生这种情况,但图书馆似乎旨在阻止它。

但是,有一个函数 QDomDocument::importNode() 可能是您想要的。你可以这样做:

docAParent.appendChild( docA.importNode( docBNode, true ) );

布尔参数控制是否进行深层复制。

请参阅文档:http: //qt-project.org/doc/qt-4.8/qdomdocument.html#importNode

于 2013-03-23T10:07:23.413 回答