zoukankan      html  css  js  c++  java
  • jsoncpp的生成和使用

    从github下载jsoncpp-master
    在执行jsoncpp-mastermakefilesmsvc2010文件夹下jsoncpp.sln
    会有3个项目
    执行lib_json项目生成lib_json.lib。这个静态库就是我们想要的。
    这里要注意的是:“执行lib_json项眼下要设置一下c/c++-》代码生成-》执行库以便生成不一样的lib文件”
    假设lib要用于MTd环境下,则设置为MTd;假设lib要用于MDd环境下,则设置为MDd。


    jsoncpp的使用:http://www.cppblog.com/wanghaiguang/archive/2013/12/26/205020.html



    // TestJsoncppCode.cpp : Defines the entry point for the console application.
    //
    
    #include "stdafx.h"
    
    
    #include "include/json/json.h"
    #include <fstream>
    #include <string>
    
    #pragma comment(lib,"lib_json.lib")
    using namespace std;
    
    #ifdef _DEBUG
    #define new DEBUG_NEW
    #endif
    
    
    // The one and only application object
    
    
    void WriteJsonData(const char* filename)
    {
    	Json::Reader reader;
    	Json::Value root; // Json::Value是一种非常重要的类型。能够代表随意类型。

    如int, string, object, array... std::ifstream is; is.open(filename, std::ios::binary); if (reader.parse(is, root)) { Json::Value arrayObj; // 构建对象 Json::Value new_item, new_item1; new_item["date"] = "2011-11-11"; new_item1["time"] = "11:11:11"; arrayObj.append(new_item); // 插入数组成员 arrayObj.append(new_item1); // 插入数组成员 int file_size = root["files"].size(); for (int i = 0; i < file_size; ++i) root["files"][i]["exifs"] = arrayObj; // 插入原json中 std::string out = root.toStyledString(); // 输出无格式json字符串 Json::FastWriter writer; std::string strWrite = writer.write(root); std::ofstream ofs; ofs.open("test_write.json"); ofs << strWrite; ofs.close(); } is.close(); } int ReadJsonFromFile(const char* filename) { Json::Reader reader;// 解析json用Json::Reader Json::Value root; // Json::Value是一种非常重要的类型,能够代表随意类型。如int, string, object, array... std::ifstream is; is.open(filename, std::ios::binary); if (reader.parse(is, root, false)) { std::string code; if (!root["files"].isNull()) // 訪问节点。Access an object value by name, create a null member if it does not exist. code = root["uploadid"].asString(); code = root.get("uploadid", "null").asString();// 訪问节点,Return the member named key if it exist, defaultValue otherwise. int file_size = root["files"].size(); // 得到"files"的数组个数 for (int i = 0; i < file_size; ++i) // 遍历数组 { Json::Value val_image = root["files"][i]["images"]; int image_size = val_image.size(); for (int j = 0; j < image_size; ++j) { std::string type = val_image[j]["type"].asString(); std::string url = val_image[j]["url"].asString(); printf("type : %s, url : %s ", type.c_str(), url.c_str()); } } } is.close(); return 0; } int main(int argc, TCHAR* argv[], TCHAR* envp[]) { int nRetCode = 0; //1.从字符串解析json const char* str = "{"uploadid": "UP000000","code": 100,"msg": "","files": ""}"; Json::Reader reader; Json::Value root; if (reader.parse(str, root)) // reader将Json字符串解析到root,root将包括Json里全部子元素 { printf("--------------从字符串读取JSON--------------- "); std::string upload_id = root["uploadid"].asString(); // 訪问节点。upload_id = "UP000000" int code = root["code"].asInt(); // 訪问节点,code = 100 printf("upload_id : %s code : %d ", upload_id.c_str(), code); } //2.从文件解析json string sTempPath = "test_json.json"; printf("--------------从文件读取JSON--------------- "); ReadJsonFromFile(sTempPath.c_str()); //3.向文件写入json WriteJsonData(sTempPath.c_str()); system("pause"); return nRetCode; }



  • 相关阅读:
    跟我学SpringCloud | 第十二篇:Spring Cloud Gateway初探
    跟我学SpringCloud | 第十一篇:使用Spring Cloud Sleuth和Zipkin进行分布式链路跟踪
    跟我学SpringCloud | 第十篇:服务网关Zuul高级篇
    跟我学SpringCloud | 第九篇:服务网关Zuul初
    跟我学SpringCloud | 第八篇:Spring Cloud Bus 消息总线
    跟我学SpringCloud | 第七篇:Spring Cloud Config 配置中心高可用和refresh
    跟我学SpringCloud | 第六篇:Spring Cloud Config Github配置中心
    跟我学SpringCloud | 第五篇:熔断监控Hystrix Dashboard和Turbine
    跟我学SpringCloud | 第四篇:熔断器Hystrix
    跟我学SpringCloud | 第三篇:服务的提供与Feign调用
  • 原文地址:https://www.cnblogs.com/jhcelue/p/6903975.html
Copyright © 2011-2022 走看看