在c++中使用json----保存到文件、从文件中解析

今天打算在服务器中加上一个xml表示当前服务器存在的video文件的列表的,大体上和数据库表中的值是一样的

在c++中使用json----保存到文件、从文件中解析_第1张图片


然后每次上传文件之后,都会生成一张这样的xml表,然后手机上边通过得到这种表,来获取目前服务器上边存在的视频文件


一开始打算用xml的

一开始打算用xml的,但是发现json比这更小(不过后来,作者打算两个方式都使用,xml还有很多的秘密……)


使用了一下jsoncpp,感觉还不错,像自己一直使用的库-----varint,不过方式不一样,varint使用的是map嵌套map得到索引的方式,当然也能够保存文件中,大体的操作方式和json惊奇的类似。


所以亲切感随之而来。



下面开始使用jsoncpp

首先是从http://sourceforge.net/projects/jsoncpp/下载到源代码,\jsoncpp-src-0.5.0\makefiles\vs71直接用vs编译,得到lib,贴个测试代码:

[cpp]  view plain  copy
 print ?
  1. // test_json.cpp : 定义控制台应用程序的入口点。  
  2. //  
  3.   
  4. #include "stdafx.h"  
  5. #include "iostream"  
  6. using namespace std;  
  7. #include "string"  
  8. #include "json/json.h"  
  9. #pragma comment(lib, "json_vc71_libmtd.lib")  
  10. #include "fstream"  
  11. #include "assert.h"  
  12.   
  13.   
  14. int ReadFromFile(string fileName)  
  15. {  
  16.     ifstream fin;  
  17.     fin.open(fileName);  
  18.     assert(fin.is_open());  
  19.   
  20.     Json::Reader reader;  
  21.     Json::Value  root;  
  22.     if (!reader.parse(fin, root, false))  
  23.     {  
  24.         return -1;  
  25.     }  
  26.   
  27.     // 获取数组中的数据  
  28.     cout << "array data:" << endl;  
  29.     int arraySize = root["array"]["map"].size();  
  30.     for (int i = 0; i 
  31.     {  
  32.         Json::Value valKeyValue = root["array"]["map"][i]["arrayMap"];  
  33.         string tempKeyValue = valKeyValue.asString();  
  34.         cout << "array map arrayMap:" << tempKeyValue << endl;  
  35.     }  
  36.     cout << endl;  
  37.   
  38.     cout << "my age is:" << root["array"]["age"] << endl;  
  39.   
  40.     int arraySize2 = root["array"]["array1"].size();  
  41.     for (int i = 0; i 
  42.     {  
  43.         Json::Value valKeyValue = root["array"]["array1"][i]["key"];  
  44.         int tempKeyValue = valKeyValue.asInt();  
  45.         cout << "tempKeyValue:" << tempKeyValue << endl;  
  46.     }  
  47. }  
  48.   
  49. int WriteToFile(string fileName)  
  50. {  
  51.     ofstream fout;  
  52.     fout.open(fileName);  
  53.     assert(fout.is_open());  
  54.   
  55.     Json::Value root;  
  56.     Json::Value arrayObj;  
  57.     Json::Value item;  
  58.     Json::Value arrayMap;  
  59.   
  60.     for (int i = 0; i < 10; i++)  
  61.     {  
  62.         item["arrayMap"] = "zengraoli";  
  63.         arrayMap.append(item);  
  64.     }  
  65.     root["array"]["map"]= arrayMap;  
  66.     root["array"]["age"] = 18;  
  67.   
  68.     Json::Value item2;  
  69.     for (int i = 0; i < 10; i++)  
  70.     {  
  71.         item2["key"] = i;  
  72.         arrayObj.append(item2);  
  73.     }  
  74.     root["array"]["array1"] = arrayObj;  
  75.   
  76.     std::string out = root.toStyledString();  
  77.   
  78.     fout << root.toStyledString() << endl;  
  79.     return 0;  
  80. }  
  81.   
  82. int _tmain(int argc, _TCHAR* argv[])  
  83. {  
  84.     WriteToFile("video.json");  
  85.   
  86.     ReadFromFile("video.json");  
  87.   
  88.     return 0;  
  89. }  

其实很简单

比如你想要

{

“zeng”{

"age" : 18

}

}


只需要root[“zeng”]["age"] = 18

数组比较难处理一些,可以参见上面的例子


整个工程的代码已经上传到csdn(包含jsoncpp-src-0.5.0和已经用vs2012编译出来的bug lib):

http://download.csdn.net/detail/zengraoli/5540623

5

你可能感兴趣的:(MFC)