xml文件的解析(libxml2)

#include <stdio.h>
#include <libxml/parser.h>

int main(int argc, char* argv[])
{
   xmlDocPtr doc;           //定义解析文档指针
   xmlNodePtr curNode;      //定义结点指针(你需要它为了在各个结点间移动)
   xmlChar *szKey;          //临时字符串变量
   char *szDocName;

   if (argc <= 1) {
      printf("Usage: %s docname\n", argv[0]);
      return  -1;
   }

   szDocName = argv[1];
   doc = xmlReadFile(szDocName,  "GB2312",  XML_PARSE_RECOVER); //以GB2312的编码方式读入解析文件

   //检查解析文档是否成功,如果不成功,libxml将指一个注册的错误并停止。
   //一个常见错误是不适当的编码。XML标准文档除了用UTF-8或UTF-16外还可用其它编码保存。
   //如果文档是这样,libxml将自动地为你转换到UTF-8。更多关于XML编码信息包含在XML标准中.
   if (NULL == doc) {  
      fprintf(stderr,"Document is not parsed successfully. \n");    
      return -1;
   }

   curNode = xmlDocGetRootElement(doc); //确定文档根元素
   /*检查确认当前文档中包含内容*/
   if (NULL == curNode) {
      fprintf(stderr,"the document is empty.\n");
      xmlFreeDoc(doc);

      return -1;
   }

   /*在这个例子中,我们需要确认文档是正确的类型。“root”是在这个示例中使用文档的根类型。*/
   if (xmlStrcmp(curNode->name,  BAD_CAST  "root")) {
      fprintf(stderr,"document of the wrong type, root_node is not root");
      xmlFreeDoc(doc);
      return -1;
   }

   curNode = curNode->xmlChildrenNode;
   xmlNodePtr propNodePtr = curNode;
   while(NULL != curNode) {
      //取出节点中的内容
      if ((!xmlStrcmp(curNode->name,  (const xmlChar *)"newNode1"))) {
         szKey = xmlNodeGetContent(curNode);
         printf("newNode1: %s\n", szKey);
         xmlFree(szKey);
      }

      //查找带有属性attribute的节点
      if (xmlHasProp(curNode,  BAD_CAST   "attribute")) {
         propNodePtr = curNode;
      }
      curNode = curNode->next;
   }

   //查找属性
   xmlAttrPtr attrPtr = propNodePtr->properties;
   while (attrPtr != NULL) {
      if (!xmlStrcmp(attrPtr->name,  BAD_CAST "attribute")) {
         xmlChar* szAttr = xmlGetProp(propNodePtr,  BAD_CAST  "attribute");
         printf("get attribute = %s\n", szAttr);
         xmlFree(szAttr);
      }
      attrPtr = attrPtr->next;
   }


  xmlFreeDoc(doc);

  xmlCleanupParser();

    return 0;

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

_xiaodoudou

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值