c++实现Xml和json互转【转】
https://blog.csdn.net/kfy2011/article/details/51774242
1、下载c语言的cJson库源码,库很小,只有两个文件cJSON.c和cJSON.h。下载地址:https://sourceforge.net/projects/cjson/
2、c++实现Xml和json互转
2.1、头文件
- #include "XmlJsonTransfer.h"
- //#include "cmsDebug.h"
- #include "WebSocket/src/cJSON.h"
- #include <stdlib.h>
- #include <string.h>
- #include <stdio.h>
- #include <assert.h>
- #include <time.h>
- #include <iostream>
- using namespace std;
2.2、xml转json
- // 依赖cJSon,递归
- /*
- <doc><a a1="1" a2="2">123</a></doc> 转 {"doc": {"a": {"-a1": "1","-a2": "2","#text": "123"}}}
- */
- string Xml2Json(string strXml)
- {
- string pNext = strXml;
- cJSON * reJson = cJSON_CreateObject();
- cJSON * jsonArray = cJSON_CreateArray();
- string strArrayKey = "";
- int nPos = 0;
- while ((nPos = pNext.find("<")) >= 0)
- {
- // 获取第一个节点,如:<doc><a a1="1" a2="2">123</a></doc>
- int nPosS = pNext.find("<");
- int nPosE = pNext.find(">");
- if (nPosS < 0 || nPosE < 0)
- {
- printf("key error!");
- }
- string strKey = pNext.substr(nPosS+1, nPosE-nPosS-1);
- // 解释属性,如:<a a1="1" a2="2">
- cJSON * jsonVal = NULL;
- if ((nPos = strKey.find("=")) > 0)
- {
- jsonVal = cJSON_CreateObject();
- int nPos = strKey.find(" ");
- string temp = strKey.substr(nPos+1);
- strKey = strKey.substr(0, nPos);
- while((nPos = temp.find("=")) > 0)
- {
- int nPos1 = temp.find("=");
- int nPos2 = temp.find("\" ", nPos1 + 1);
- string strSubKey = temp.substr(0, nPos1);
- string strSubVal = temp.substr(nPos1+1);
- if (nPos2 > 0)
- strSubVal = temp.substr(nPos1+1, nPos2-nPos1-1);
- // 去除转义字符 \"
- if ((int)(nPos = strSubVal.find("\"")) >= 0)
- {
- int nEnd = strSubVal.find("\\", nPos+1);
- strSubVal = strSubVal.substr(nPos+1, nEnd-nPos-1);
- }
- cJSON_AddItemToObject(jsonVal, ("-" + strSubKey).c_str(), cJSON_CreateString(strSubVal.c_str()));
- if (nPos2 < 0)
- break;
- temp = temp.substr(nPos2+2);
- }
- }
- int nPosKeyE = pNext.find("</" + strKey + ">");
- if (nPosKeyE < 0)
- {
- printf("key error!");
- }
- // 获取节点内容,如<a a1="1" a2="2">123</a> 或 123
- string strVal = pNext.substr(nPosE+1, nPosKeyE-nPosE-1);
- if ((nPos = strVal.find("<")) >= 0)
- {
- // 包含子节点,如<a a1="1" a2="2">123</a>
- strVal = Xml2Json(strVal);
- if (jsonVal)
- {
- if (strVal != "")
- cJSON_AddItemToObject(jsonVal, "#text", cJSON_Parse(strVal.c_str()));
- }
- else
- {
- jsonVal = cJSON_Parse(strVal.c_str());
- }
- }
- else
- {
- // 不包含子节点,如123
- if (jsonVal)
- {
- if (strVal != "")
- cJSON_AddItemToObject(jsonVal, "#text", cJSON_CreateString(strVal.c_str()));
- }
- else
- {
- jsonVal = cJSON_CreateString(strVal.c_str());
- }
- }
- // 获取下一个节点
- pNext = pNext.substr(nPosKeyE + strKey.size() + 3);
- // 根据下一节点判断是否为数组
- int nPosNext = pNext.find("<");
- int nPosNextSame = pNext.find("<" + strKey + ">");
- if (strArrayKey != "" || (nPosNext>=0 && nPosNextSame>=0 && nPosNext==nPosNextSame))
- {
- // 数组
- cJSON_AddItemToArray(jsonArray, jsonVal);
- strArrayKey = strKey;
- }
- else
- {
- // 非数组
- cJSON_AddItemToObject(reJson, strKey.c_str(), jsonVal);
- }
- }
- if (strArrayKey != "")
- {
- cJSON_AddItemToObject(reJson, strArrayKey.c_str(), jsonArray);
- }
- string strJson = cJSON_Print(reJson);
- if(reJson)
- {
- cJSON_Delete(reJson);
- reJson = NULL;
- }
- return strJson;
- }
2.3、json转xml
- // 依赖cJSon,递归
- /*
- {"doc": {"a": {"-a1": "1","-a2": "2","#text": "123"}}} 转 <doc><a a1="1" a2="2">123</a></doc>
- */
- string Json2Xml(string strJson)
- {
- string strXml = "";
- cJSON *root = cJSON_Parse(strJson.c_str());
- if (!root)
- {
- printf("strJson error!");
- return "";
- }
- cJSON *pNext = root->child;
- if (!pNext)
- {
- return strJson;
- }
- int nPos = 0;
- while (pNext)
- {
- string strChild = cJSON_Print(pNext);
- string strVal = Json2Xml(strChild);
- if (pNext->string != NULL)
- {
- string strKey = pNext->string;
- if ((nPos=strKey.find("-")) == 0)
- {
- // 属性项
- strXml.append(" ");
- strXml.append(strKey.substr(1));
- strXml.append("=");
- strXml.append(strVal);
- if (pNext->next == NULL)
- strXml.append(">");
- }
- else if ((nPos=strKey.find("#")) == 0)
- {
- // 值
- strXml.append(">");
- strXml.append(strVal);
- }
- else if ((int)(strVal.find("=")) > 0 /*&& (int)(strVal.find("<")) < 0*/)
- {
- // 包含属性项的键值对
- strXml.append("<" + strKey);
- strXml.append(strVal);
- strXml.append("</" + strKey + ">");
- }
- else
- {
- // 修正底层无键的值数组的键,如:把<JUAN_XJ_preKey>123</JUAN_XJ_preKey>中的JUAN_XJ_preKey修正
- if ((int)strVal.find("JUAN_XJ_preKey") >= 0)
- {
- replace_all(strVal, "JUAN_XJ_preKey", strKey);
- strXml.append(strVal);
- }
- else
- {
- strXml.append("<" + strKey + ">");
- strXml.append(strVal);
- strXml.append("</" + strKey + ">");
- }
- }
- }
- else
- {
- // 不包含键的值数组, 如:["123", "456"],暂时转为<JUAN_XJ_preKey>123</JUAN_XJ_preKey>
- string strPreKey = "JUAN_XJ_preKey";
- strXml.append("<" + strPreKey + ">");
- strXml.append(strVal);
- strXml.append("</" + strPreKey + ">");
- }
- pNext = pNext->next;
- }
- return strXml;
- }
2.4、辅助函数
- // 替换字符串
- string& replace_all(string& str, const string& old_value, const string& new_value)
- {
- while(true)
- {
- string::size_type pos(0);
- if((pos=str.find(old_value)) != string::npos)
- str.replace(pos,old_value.length(),new_value);
- else
- break;
- }
- return str;
- }
c++实现Xml和json互转【转】的更多相关文章
- JavaScript实现XML与JSON互转代码(转载)
下面来分享一个关于JavaScript实现XML与JSON互转例子,这里面介绍了国外的三款xml转json的例子,希望这些例子能给你带来帮助. 最近在开发在线XML编辑器,打算使用JSON做为中间格式 ...
- SQL2008使用json.net实现XML与JSON互转
借助CLR,首先实现字符串的互转,然后使用存储过程实现JSON2table public class JsonFunction { /// <summary> ...
- JSONUtil(JAVA对象/List与json互转,xml与json互转)
package com.chauvet.utils.json; import java.io.BufferedReader; import java.io.File; import java.io.F ...
- xml与json互转
依赖包: <dependency> <groupId>net.sf.json-lib</groupId> <artifactId>json-lib< ...
- C# :XML和JSON互转
我们一般在用JSON或者XML作为数据交换的时候,可能定义一个没有真正意义方法的类,其实就是一个关于属性的数据结构,如果对于这种情况,可以将这个类对象作为中介,然后利用C#提供的序列化和反序列化的方法 ...
- xml和json互转
开发过程中有些时候需要把xml和json互转,如某钱X接口入参和出参都是xml格式的,十分蛋疼.特写下面工具类,以留用. 需要引用jar: <!-- https://mvnrepository. ...
- Json、JavaBean、Map、XML之间的互转
思路是JavaBean.Map.XML都可以用工具类很简单的转换为Json,进而实现互相转换 1.Map.XML与Json互转 mvn依赖 <dependency> <groupId ...
- c#通用配置文件读写类(xml,ini,json)
.NET下编写程序的时候经常会使用到配置文件.配置文件格式通常有xml.ini.json等几种,操作不同类型配置文件需要使用不同的方法,操作较为麻烦.特别是针对同时应用不同格式配置文件的时候,很容易引 ...
- c#通用配置文件读写类与格式转换(xml,ini,json)
.NET下编写程序的时候经常会使用到配置文件.配置文件格式通常有xml.ini.json等几种,操作不同类型配置文件需要使用不同的方法,操作较为麻烦.特别是针对同时应用不同格式配置文件的时候,很容易引 ...
随机推荐
- 循序渐进学.Net Core Web Api开发系列【10】:使用日志
系列目录 循序渐进学.Net Core Web Api开发系列目录 本系列涉及到的源码下载地址:https://github.com/seabluescn/Blog_WebApi 一.本篇概述 本篇介 ...
- Windows7双系统的启动顺序怎样修改?
本着工作的原因或个人的原因,不过绝大部分还是因为个人怀旧的因素比较多.大家即使安装了新的Windows 7,可是又不想放弃原来的xp765系统,安装双系统就成为不少人的选择.不过有一个麻烦,那就是系统 ...
- BZOJ.4816.[SDOI2017]数字表格(莫比乌斯反演)
题目链接 总感觉博客园的\(Markdown\)很..\(gouzhi\),可以看这的. 这个好像简单些啊,只要不犯sb错误 [Update] 真的算反演中比较裸的题了... \(Descriptio ...
- Moment.js 一款JS时间封装库
链接地址:http://momentjs.cn/docs/#/displaying/difference/
- Tesseract ocr 3.02学习记录一
光学字符识别(OCR,Optical Character Recognition)是指对文本资料进行扫描,然后对图像文件进行分析处理,获取文字及版面信息的过程.OCR技术非常专业,一般多是印刷.打印行 ...
- HAL驱动的串口编程陷阱
http://bbs.elecfans.com/jishu_464356_1_1.html 手上有块NUCLEO STM32L053x板子,用来做串口实验,看了下ST的最新库HAL驱动,于是想用HAL ...
- Memcache 分布式高可用集群介绍
分布式缓存需考虑如下三点: 1.缓存本身的水平线性扩展的问题. 2.缓存大病罚下的本身性能问题. 3.避免缓存的单点鼓掌问题. 分布式缓存存在的问题: 1.内存本身的管理问题.内存的分配,管理和回收机 ...
- SSH 证书登录(实例详解)
SSH 证书登录(实例详解) 客户端通过私钥登录 ssh 服务器 CentOS 7 SSH 使用证书登录 使用私钥 ssh 登陆 CentOS
- Android WebView加载Html右边空白问题的解决方案
用WebView显示Html时,右边会出现一条空白区,如下图所示: 最开始的时候,认为是网页本身的空白. 后来发现网页本身无问题,且这个空白区是跟Scroll Bar 的位置和粗细比较相符,于是去控制 ...
- Java 反射机制(包括组成、结构、示例说明等内容)
第1部分 Java 反射机制介绍 Java 反射机制.通俗来讲呢,就是在运行状态中,我们可以根据“类的部分已经的信息”来还原“类的全部的信息”.这里“类的部分已经的信息”,可以是“类名”或“类的对象” ...