我使用 g++ 和 libxml2
static void print_element_names(xmlNode * a_node,xmlDoc * doc) {
xmlNode *cur_node = NULL;
const char *c= "city";
xmlChar *name;
for (cur_node = a_node; cur_node; cur_node = cur_node->next) {
if (cur_node->type == XML_ELEMENT_NODE) {
std::cout<<convert(cur_node)<<std::endl;
}
if (convert(cur_node)==c){
//work but not equal with city
std::cout<<"Found node"<<std::endl;
}
print_element_names(cur_node->children,doc);
}
}
char * convert(xmlNode * a_node) {
char* a = (char *)a_node->name;
return a;
}
结果是
地址簿
人
姓名
地址
街道
城市
状态
压缩
电话
它不等于“城市”可能是因为 xmlChar 和 char。如何比较 nodename 和 char ?