RapidJson简单使用(1)

匿名 (未验证) 提交于 2019-12-03 00:30:01
RapidJson是一个C++的JSON解析器和生成器。RapidJson具有小而全,高性能,跨平台、不依赖外部库而独立,对Unicode友好和内存友好等特点。  
RapidJson依赖cmake作为通用生成工具,以Ubuntu为例,安装步骤如下:     1.下载RapidJson库:         #git submodule update --init             2.在RapidJson库目录下,创建一个build目录:         #mkdir build     3.在build目录下执行:         #cmake ..     4.在 Linux/Ubuntu 下,于 build 目录运行:          #make      注意:在 Windows 下,编译生成在 build 目录中的 solution。     5.在buil目录下执行:         #make install 
 #include <iostream> #include <string> #include <assert.h> #include "rapidjson/document.h" #include "rapidjson/writer.h" #include "rapidjson/stringbuffer.h"  using namespace std; using namespace rapidjson;  int main(void) {     //1.把Json解析至DOM     //const char *json ="{\"project\":\"rapidjson\",\"stars\":10}";     const char *json = "{\"project\":\"rapidjson\",\"hello\":\"welcome to the rapidjson world\",\"year\":2018,\"month\":6,\"day\":18}";     Document d;     d.Parse(json);      //2.通过GetInt()或SetInt()等方法获取或修改Json对用的数据     string str = d["project"].GetString();     str.append(",");     str +=d["hello"].GetString();     int year,month,day;     year = d["year"].GetInt();     month = d["month"].GetInt();     day = d["day"].GetInt();     cout<<str.c_str()<<endl;     cout<<"Date:"<<year<<"-"<<month<<"-"<<day<<endl;      //3.把DOM转换成JSON     StringBuffer buffer;     Writer<StringBuffer> writer(buffer);     d.Accept(writer);      cout<<buffer.GetString()<<endl;     return 0; } 
最后,通过编译运行,结果如下: 

初次使用rapidjson,有很多东西还需要时间去消化,花时间去研究源码,深入学习,多练习,多总结,才能很好的使用rapidjson库。 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!