如何在 C++ 中从 XML 文件中删除子节点使用 Xerces-C?
root = doc->getDocumentElement();
child=root->getLastChild();
DOMNode* removedElement = root->removeChild(child);
removedElement->release();
如果 XML 文件如下所示,则子级将获取换行符作为节点:
<root>
<child1> </child1>
<child2> text </child2>
</root>
相同的代码工作正常,并且如果 XML 文件的格式为删除子级,
<root> <child1></child1><child2>text</child2> </root>
我怎样才能摆脱它(换行符)?
root = doc->getDocumentElement();
child=root->getLastChild();
DOMNode* removedElement = root->removeChild(child);
removedElement->release();
The child is getting newline character as a node if the XML file is like this:
<root>
<child1> </child1>
<child2> text </child2>
</root>
The same code is working fine and removing child if the XML file is of the format
<root> <child1></child1><child2>text</child2> </root>
How can I get rid of it (the newline)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我自己找到了答案。
对DOM的理解不同。在本例中,
的子节点是 root 的文本节点、child1、child1 的文本节点、child2、child2 的文本节点。所以 root 的子节点数量是 5。但一般来说,根据 XML 符号,我们认为它们是 2。
因此,当我尝试删除最后一个孩子时,这是一个错误。我们可以从 child2 中删除该文本节点。
Found the answer myself.
The understanding of DOM is different. The children of
<root>
in this case are the text nodes of root, child1, text node of child1, child2, text node of child2.So the number of children of root is 5. But generally, as per XML notations, we thought they are 2.
So here when I try to remove the last child it is an error. We can remove that text node from child2.