首页 > 代码库 > xml转json
xml转json
1、cJSON
cJSON.h cJSON.c(查看文件)
2、libxml2
代码如下:
#include <stdlib.h> #include <string.h> #include <stdio.h> #include <libxml/xmlmemory.h> #include <libxml/parser.h> #include "cJSON.h" xmlNodePtr parseDoc(const char* docname) { xmlDocPtr doc; xmlNodePtr cur; xmlKeepBlanksDefault(0); doc = xmlParseFile(docname); if(NULL == doc) { fprintf(stderr, "Document parsed failed!\n"); return NULL; } cur = xmlDocGetRootElement(doc); if(NULL == cur) { fprintf(stderr, "Document is empty!\n"); xmlFreeDoc(doc); return NULL; } return cur; } void printXmlChildren(xmlNodePtr xml_root) { xmlNodePtr cur = NULL; for(cur = xml_root; cur; cur = cur->next) { if(cur->type == XML_ELEMENT_NODE) { if(cur->children->type == XML_TEXT_NODE) fprintf(stdout, "NODE:[%s][%s]\n", cur->name, xmlNodeGetContent(cur)); else if(cur->children->type == XML_ELEMENT_NODE) { fprintf(stdout, "NODE:[%s]\n", cur->name); printXmlChildren(cur->children); } } } return ; } void xml2json(xmlNodePtr xml_root, cJSON** json_root) { xmlNodePtr xml_cur = NULL; cJSON *json_cur = NULL; for(xml_cur = xml_root; xml_cur; xml_cur = xml_cur->next) { if(xml_cur->type == XML_ELEMENT_NODE) { if(xml_cur->children->type == XML_TEXT_NODE) { // fprintf(stdout, "1--->[%s]\n", xml_cur->name); json_cur = cJSON_CreateString(xmlNodeGetContent(xml_cur)); cJSON_AddItemToObject(*json_root, xml_cur->name, json_cur); } else if(xml_cur->children->type == XML_ELEMENT_NODE) { // fprintf(stdout, "2--->[%s]\n", xml_cur->name); json_cur = cJSON_CreateObject(); cJSON_AddItemToObject(*json_root, xml_cur->name, json_cur); xml2json(xml_cur->children, &json_cur); } } } return ; } int main(int argc, char* argv[]) { char* docname; xmlNodePtr xml_root; if(1 >= argc) { fprintf(stderr, "Usage:%s docname!\n", argv[0]); return -1; } docname = argv[1]; if(NULL == (xml_root = parseDoc(docname))) { fprintf(stderr, "解析XML数据失败\n"); return -1; } printXmlChildren(xml_root); fprintf(stdout, "-------------------------------------\n"); cJSON* json_root = cJSON_CreateObject(); xml2json(xml_root, &json_root); fprintf(stdout, "JSON:\n[%s]\n", cJSON_Print(json_root)); fprintf(stdout, "-------------------------------------\n"); return ; }
运行结果:
存在问题:
1、JSON数据的格式,无法判断整数等其他数据格式
2、XML循环数据的处理,XML循环数据转换后应该是带中括号的
xml转json
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。