如何使用 RapidXml for C++ 在 xml_document 中插入新节点使用字符串?
std::string src = "<xml><node1>aaa</node1><node2>bbb</node2><node1>ccc</node1></xml>";
std::string src2 = "<nodex>xxx</nodex>";
我想使用 RapidXml 将 src2 中的节点附加到 src 中的树中 我这样做:
xml_document<> xmldoc;
xml_document<> xmlseg;
std::vector<char> s(src.begin(), src.end());
std::vector<char> x(src2.begin(), src2.end());
xmldoc.parse<0>(&s[0]);
xmlseg.parse<0>(&x[0]);
xml_node<>* a = xmlseg.first_node(); /* Node to append */
xmldoc.first_node("xml")->append_node(a); /* Appending node a to the tree in src */
嗯,编译得很好,但是运行时我遇到了这个可怕的错误:
无效 rapidxml::xml_node::append_node(rapidxml::xml_node*) [with Ch = char]: 断言 `child && !child->parent() && child->type() != node_document' 失败。已中止
不知道怎么办。 问题很简单,我需要将一个节点附加到树(xml),但我有字符串。
我想发生这种情况是因为我试图将一棵树的节点插入另一棵树...只有为给定树分配的节点才能添加到该树...这很糟糕...
有什么办法我可以做我需要什么简单的方式?
谢谢。
std::string src = "<xml><node1>aaa</node1><node2>bbb</node2><node1>ccc</node1></xml>";
std::string src2 = "<nodex>xxx</nodex>";
I want to append the node in src2 inside the tree in src using RapidXml
I do this:
xml_document<> xmldoc;
xml_document<> xmlseg;
std::vector<char> s(src.begin(), src.end());
std::vector<char> x(src2.begin(), src2.end());
xmldoc.parse<0>(&s[0]);
xmlseg.parse<0>(&x[0]);
xml_node<>* a = xmlseg.first_node(); /* Node to append */
xmldoc.first_node("xml")->append_node(a); /* Appending node a to the tree in src */
Well, great it compiles, but when running I got this horrible error:
void
rapidxml::xml_node::append_node(rapidxml::xml_node*)
[with Ch = char]: Assertion `child &&
!child->parent() && child->type() !=
node_document' failed. Aborted
I don't know how to do.
The problem is simple I need to append a node to a tree (xml) but I have strings.
I guess this happens because I'm trying to insert a node of a tree into another tree... only nodes allocated for a given tree can be added to that tree... this sucks...
Is there a way I can do what I need in a simple way?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
输出:
Output: