我正在尝试使用libxml2的函数xmlNodeGetContent来访问xml文件中的内容,但由于某些原因,无法读取自动关闭选项卡中的内容。
void parseRow (xmlDocPtr doc, xmlNodePtr cur) {
xmlChar *key;
cur = cur-> xmlChildrenNode;
while (cur != NULL) {
if ((!xmlStrcmp(cur->name, (const xmlChar *)"row"))) {
key = xmlNodeGetContent( cur->children );
printf("keyword: %s\n", (char*)key);
xmlFree(key);
}
cur = cur -> next;
}
return;
}
我正在使用带有两种类型选项卡的示例xml文件,第二行选项卡可以读取,而第二行选项卡返回(null);
<?xml version="1.0"?>
<story>
<storyinfo>
<author>John Fleck</author>
<datewritten>June 2, 2002</datewritten>
<row> Id="1" UserId="1" </row>
<row Id="1" UserId="1" />
<keyword>Id="hello"</keyword>
</storyinfo>
</story>
答案 0 :(得分:2)
第二行元素为空,它没有内容,只有属性。
<tag>non-empty content</tag>
<tag content="attribute value"/>
如果没有任何模式,框架就不可能知道第二个标记元素是什么类型,并且它不能为它定义默认值,并且它不能派生类型,因此它没有内容。它确实有一个内容属性,但你在我所知道的大多数框架中使用不同的方法访问属性。
答案 1 :(得分:1)
如果要获取属性值,请使用xmlGetProp。