我目前正在使用Visual Studio 2010中的xerces 3.1。
我写了这段(非常简单的)代码:
XMLPlatformUtils::Initialize();
DOMImplementation* impl = DOMImplementationRegistry::getDOMImplementation(L"XML 1.0");
DOMDocument* doc1 = impl->createDocument(L"nsURI", L"abc:root1", 0);
DOMDocument* doc2 = impl->createDocument(0, L"root2", 0);
DOMElement* root1 = doc1->getDocumentElement();
DOMElement* root2 = doc2->getDocumentElement();
DOMElement* el1 = doc1->createElement(L"el1");
root1->appendChild(el1);
DOMNode* tmpNode = doc2->adoptNode(el1); //tmpNode is null after this line
root2->appendChild(tmpNode);
doc1->release();
doc2->release();
xercesc::XMLPlatformUtils::Terminate();
问题是,adoptNode(...)
方法无论如何都会返回空指针。我真的不明白这里发生了什么,请帮助我!
PS:我知道我可以使用importNode(...)
方法并从旧文档中删除并释放旧节点,但我希望有一种方法可以解决adoptNode(...)
的问题!
答案 0 :(得分:0)
xerces api声明adoptNode(DOMNode* source)
的以下内容:
更改节点及其子节点的ownerDocument以及附加的属性节点(如果有)。
经过一些研究后,我看了xerces 3.1中的adoptNode的实现,可悲的事实是,这是不可能的。引用源代码:
if(sourceNode->getOwnerDocument()!=this)
{
// cannot take ownership of a node created by another document, as it comes from its memory pool
// and would be delete when the original document is deleted
return 0;
}
修改强>:
此方法有一种解决方法,但它需要一些DOM实现知识(特别是在使用UserData时)。您可以使用importNode(...)
导入节点,并从旧文档中删除其他节点。
应该释放旧节点,以免浪费内存!
如果您已将userdata附加到旧节点,则新文档必须有一些UserDataHandler
,它采用从旧节点到新节点的用户数据!
请注意,旧节点上的可能引用现在不指向新节点。它们必须手动更改(或使用一些UserDataHandler解决方法)