libxml2库如何读取xml文件的节点例子
时间: 2024-02-28 21:29:24 浏览: 64
读取xml文件示例
libxml2库读取xml文件的节点例子:
```c
#include <libxml/parser.h>
#include <libxml/tree.h>
int main() {
xmlDocPtr doc;
xmlNodePtr cur;
doc = xmlParseFile("example.xml");
if (doc == NULL) {
fprintf(stderr,"Document not parsed successfully. \n");
return 1;
}
cur = xmlDocGetRootElement(doc);
if (cur == NULL) {
fprintf(stderr,"empty document\n");
xmlFreeDoc(doc);
return 1;
}
if (xmlStrcmp(cur->name, (const xmlChar *) "root")) {
fprintf(stderr,"document of the wrong type, root node != root");
xmlFreeDoc(doc);
return 1;
}
cur = cur->xmlChildrenNode;
while (cur != NULL) {
if ((!xmlStrcmp(cur->name, (const xmlChar *) "node"))) {
printf("node: %s\n", xmlGetProp(cur, "name"));
}
cur = cur->next;
}
xmlFreeDoc(doc);
return 0;
}
```
这个例子演示了如何解析一个名为 example.xml 的 xml 文件,并打印其中的所有节点名称。
阅读全文