如何在 C++ 中从 XML 文件中删除子节点使用 Xerces-C?

发布于 2024-11-28 04:51:30 字数 563 浏览 2 评论 0原文

    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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

记忆里有你的影子 2024-12-05 04:51:30

我自己找到了答案。

对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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文