gpt4 book ai didi

c++ - Rapidxml遍历节点

转载 作者:行者123 更新时间:2023-11-30 03:27:39 25 4
gpt4 key购买 nike

xml文件:

<top>
<name>hanhao</name>
<age>18</age>
<!--
node name : name
node value : hanhao

node name : age
node value : 18
-->
</top>

我的cpp文件:

#include<iostream>
#include"rapidxml/rapidxml.hpp"
#include"rapidxml/rapidxml_print.hpp"
#include"rapidxml/rapidxml_utils.hpp"
using namespace std;
using namespace rapidxml;
void handlenode(xml_node<> *node){
for(node = node -> first_node(); node != NULL; node = node -> next_sibling()){
cout<<node -> name() <<" 's value is : "<<node->value() <<endl;
handlenode(node);
}
}
int main(){
char xmldoc[] = "demo.xml";
file<> file(xmldoc);
xml_document<> doc;
doc.parse<parse_comment_nodes>(file.data());
xml_node<> *node = doc.first_node();
handlenode(node);
doc.allocate_node(node_element,"",node->value());
return 0;
}

预期的输出是:

name 的值为:hanhao

age 的值为:18

但实际输出是:

name 的值为:hanhao

的值为:hanhao

age 的值为:18

的值为:18

的值为:

节点名称:名称

节点值:hanhao

节点名称:年龄

节点值:18

谁能告诉我为什么会出现这个问题?

最佳答案

问题是:每个节点都有其类型,并且您正在处理每一种节点(包括末尾的注释)。看起来您只想处理 node_element,所以:

void handlenode(xml_node<> *node){
for(node = node -> first_node(); node != NULL; node = node -> next_sibling()){

if(node->type() == node_element) //chek node type
{
cout<<node -> name() <<" 's value is : "<<node->value() << endl;
handlenode(node);
}
}
}

这应该会产生预期的输出。

关于c++ - Rapidxml遍历节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47173955/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com