博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jsoncpp操作 json
阅读量:5289 次
发布时间:2019-06-14

本文共 1281 字,大约阅读时间需要 4 分钟。

博客分类:
  •  
 
Cpp代码  
  1. #include <iostream>  
  2.   
  3. //#include "json/json.h"  
  4.   
  5. #include "json_reader.cpp"  
  6. #include "json_value.cpp"  
  7. #include "json_writer.cpp"  
  8.   
  9. using namespace std;  
  10. using namespace Json;  
  11.   
  12. int main(int argc, char *argv[])  
  13. {  
  14.       
  15.     // Configuration options  
  16.     char *config_doc=" { \"encoding\" :\"UTF-8\",\"plug-ins\" : [\"python\",\"c++\",\"ruby\"],\"indent\" : { \"length\" : 3, \"use_space\": true }}";  
  17.   
  18.     Json::Value root;   // will contains the root value after parsing.  
  19.     Json::Reader reader;  
  20.     bool parsingSuccessful = reader.parse( config_doc, root );  
  21.     if ( !parsingSuccessful )  
  22.     {  
  23.         // report to the user the failure and their locations in the document.  
  24.         std::cout  << "Failed to parse configuration\n"  
  25.                    << reader.getFormattedErrorMessages();  
  26.         return 1;  
  27.     }  
  28.   
  29.     reader.parse(config_doc,root,false);     //解析出json放到json中  
  30.       
  31.     std::string encoding = root.get("encoding""GBK" ).asString();  
  32.     const Json::Value plugins = root["plug-ins"];  
  33.       
  34.     for(int index = 0; index < plugins.size(); ++index ){  
  35.             cout<<plugins[index];  
  36.     }  
  37.       
  38.     cout<< plugins;  
  39.     cout<<encoding<<endl;  
  40.       
  41.     root["encoding"] = "GB2312";  
  42.     root["indent"]["length"] =  5;  
  43.     root["indent"]["use_space"] = false;  
  44.                    
  45.     Json::StyledWriter writer;  
  46.       
  47.     std::string outputConfig = writer.write( root );   
  48.       
  49.     cout<<outputConfig;  
  50.                                       
  51.     system("PAUSE");  
  52.     return 0;  
  53. }  
 

转载于:https://www.cnblogs.com/MingZznet/p/3228179.html

你可能感兴趣的文章
java 8 新特性
查看>>
在16aspx.com上下了一个简单商品房销售系统源码,怎么修改它的默认登录名和密码...
查看>>
VS2015 create a C++ console application based on WinRT
查看>>
c++回调函数
查看>>
神经网络初探
查看>>
linux下Rtree的安装
查看>>
【Java】 剑指offer(53-2) 0到n-1中缺失的数字
查看>>
Delphi中ListView类的用法
查看>>
POJ 1202 Family 概率,DP,高精 难度:2
查看>>
SilverLight通过Net.TCP(NetTCPBinding)方式调用WCF服务
查看>>
Python函数化编程整理
查看>>
jquery元素查找方法
查看>>
纯代码Tom
查看>>
C Looooops(poj2115+扩展欧几里德)
查看>>
iOS开发之开发者申请
查看>>
Monkey测试
查看>>
二、Statement 、PreparedStatement 、CallableStatement
查看>>
selenium学习
查看>>
bzoj3110: [Zjoi2013]K大数查询 【树套树,标记永久化】
查看>>
nodejs介绍
查看>>