亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++構造和解析Json的使用示例

發布時間:2020-09-13 18:09:52 來源:腳本之家 閱讀:184 作者:蝸牛201 欄目:編程語言

概述

JSON是一種輕量級的數據交互格式,易于人閱讀和編寫,同時也易于機器解析和生成,并有效地提升網絡傳輸效率,實際項目中經常用到,相比xml有很多優點,問問度娘,優點一籮筐。

第三方庫

json解析選用jsoncpp作為第三方庫,jsoncpp使用廣泛,c++開發首選。

jsoncpp目前已經托管到了github上,地址:https://github.com/open-source-parsers/jsoncpp

使用

使用c++進行構造json和解析json,選用vs2010作為IDE。工程中使用jsoncpp的源碼進行編譯,沒有使用jsoncpp的庫,為方便大家使用把dll和lib庫也放到了我的工程jsoncpplib文件夾下,有需要的可以直接引用庫。

待解析的json數據格式如下圖:

C++構造和解析Json的使用示例

/********************************************************
Copyright (C), 2016-2017,
FileName: main
Author: woniu201
Description:use jsoncpp src , not use dll, but i also provide dll and lib.
********************************************************/
#include "stdio.h"
#include <string>
#include "jsoncpp/json.h"
using namespace std;
/************************************
@ Brief: read file
@ Author: woniu201 
@ Return: file data 
************************************/
char *getfileAll(char *fname)
{
 FILE *fp;
 char *str;
 char txt[1000];
 int filesize;
 if ((fp=fopen(fname,"r"))==NULL){
 printf("open file %s fail \n",fname);
 return NULL;
 }
 fseek(fp,0,SEEK_END); 
 filesize = ftell(fp);
 str=(char *)malloc(filesize);
 str[0]=0;
 rewind(fp);
 while((fgets(txt,1000,fp))!=NULL){
 strcat(str,txt);
 }
 fclose(fp);
 return str;
}
/************************************
@ Brief: write file
@ Author: woniu201 
@ Return:   
************************************/
int writefileAll(char* fname,const char* data)
{
 FILE *fp;
 if ((fp=fopen(fname, "w")) == NULL)
 {
 printf("open file %s fail \n", fname);
 return 1;
 }
 fprintf(fp, "%s", data);
 fclose(fp);
 return 0;
}
/************************************
@ Brief: parse json data
@ Author: woniu201 
@ Return:   
************************************/
int parseJSON(const char* jsonstr)
{
 Json::Reader reader;
 Json::Value resp;
 if (!reader.parse(jsonstr, resp, false))
 {
 printf("bad json format!\n");
 return 1;
 }
 int result = resp["Result"].asInt();
 string resultMessage = resp["ResultMessage"].asString();
 printf("Result=%d; ResultMessage=%s\n", result, resultMessage.c_str());
 Json::Value & resultValue = resp["ResultValue"];
 for (int i=0; i<resultValue.size(); i++)
 {
 Json::Value subJson = resultValue[i];
 string cpuRatio = subJson["cpuRatio"].asString();
 string serverIp = subJson["serverIp"].asString();
 string conNum = subJson["conNum"].asString();
 string websocketPort = subJson["websocketPort"].asString();
 string mqttPort = subJson["mqttPort"].asString();
 string ts = subJson["TS"].asString();
 printf("cpuRatio=%s; serverIp=%s; conNum=%s; websocketPort=%s; mqttPort=%s; ts=%s\n",cpuRatio.c_str(), serverIp.c_str(),
  conNum.c_str(), websocketPort.c_str(), mqttPort.c_str(), ts.c_str());
 }
 return 0;
}
/************************************
@ Brief: create json data
@ Author: woniu201 
@ Return:   
************************************/
int createJSON()
{
 Json::Value req;
 req["Result"] = 1;
 req["ResultMessage"] = "200";
 Json::Value object1;
 object1["cpuRatio"] = "4.04";
 object1["serverIp"] = "42.159.116.104";
 object1["conNum"] = "1";
 object1["websocketPort"] = "0";
 object1["mqttPort"] = "8883";
 object1["TS"] = "1504665880572";
 Json::Value object2;
 object2["cpuRatio"] = "2.04";
 object2["serverIp"] = "42.159.122.251";
 object2["conNum"] = "2";
 object2["websocketPort"] = "0";
 object2["mqttPort"] = "8883";
 object2["TS"] = "1504665896981";
 Json::Value jarray;
 jarray.append(object1);
 jarray.append(object2);
 req["ResultValue"] = jarray;
 Json::FastWriter writer;
 string jsonstr = writer.write(req);
 printf("%s\n", jsonstr.c_str());
 writefileAll("createJson.json", jsonstr.c_str());
 return 0;
}
int main()
{
 char* json = getfileAll("parseJson.json");
 parseJSON(json);
 printf("===============================\n");
 createJSON();
 getchar();
 return 1;
}

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,謝謝大家對億速云的支持。如果你想了解更多相關內容請查看下面相關鏈接

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

抚远县| 修文县| 武威市| 鸡泽县| 宽甸| 鹿邑县| 交口县| 莎车县| 江陵县| 石嘴山市| 会宁县| 蚌埠市| 河东区| 凭祥市| 天祝| 崇阳县| 元江| 多伦县| 上虞市| 增城市| 水城县| 九龙坡区| 昂仁县| 屯门区| 泸水县| 施甸县| 景洪市| 株洲市| 利津县| 黔东| 万盛区| 福州市| 安宁市| 安福县| 读书| 遂平县| 顺义区| 临颍县| 崇文区| 绍兴市| 内黄县|