Rapidjson的简单使用示例

前端之家收集整理的这篇文章主要介绍了Rapidjson的简单使用示例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。



很早就想用用Markdown了,一直没机会。今天就来试一下

先放个目录:


rapidjson官方教程

如果要想深入学习rapidjson工具,官方文档肯定是必须看一看的。官方教程里面的讲解才是最详细,最权威的了。


本示例所用环境

  • 引擎版本:cocos2d-x 3.10

示例代码与注释

说明:我是直接使用原版引擎创建了新的cocos2dx工程,然后略微修改了HelloWorldScene.cpp中的代码。为了方便,使用rapidjson生成json串、保存json串到文件、从文件读取json串、使用rapidjson解析json串的过程,全部写到了initSelf()函数中。

本身很反感blog全篇粘代码的方式(关键贴的代码谁都看不懂,一行注释没有),但是这部分代码示例没有什么可说的,所以在重点部分写了注释。

HelloWorldScene.h文件内容

  1. #include "cocos2d.h"
  2. class HelloWorld : public cocos2d::Layer
  3. {
  4. public:
  5. static cocos2d::Scene* createScene();
  6. virtual bool init();
  7. CREATE_FUNC(HelloWorld);
  8. private:
  9. void initSelf();
  10. };

HelloWorldScene.cpp文件内容

  1. include "HelloWorldScene.h"
  2.  
  3. include "json/rapidjson.h"
  4. include "json/document.h"
  5. include "json/filestream.h"
  6. include "json/stringbuffer.h"
  7. include "json/writer.h"
  8.  
  9. USING_NS_CC;
  10.  
  11. Scene* HelloWorld::createScene()
  12. {
  13. auto scene = Scene::create();
  14. auto layer = HelloWorld::create();
  15. scene->addChild(layer);
  16. return scene;
  17. }
  18.  
  19. bool HelloWorld::init()
  20. {
  21. if ( !Layer::init() )
  22. {
  23. return false;
  24. }
  25. else {
  26. this->initSelf();
  27. true;
  28. }
  29. }
  30.  
  31. //重点
  32. void HelloWorld::initSelf()
  33. {
  34. //生成一串如下的json格式字符串,并解析
  35. // {
  36. // "name":"qfl",
  37. // "age":20,128); background:transparent">// "letter":["a","b","c"],128); background:transparent">// "location": {"province":"fujian","city":"xiamen","number":16}
  38. // "book":[{"name":"book1","isbn":"123"},{"name":"book2","isbn":"456"}],128); background:transparent">// "healthy":true,128); background:transparent">// }
  39.  
  40. //生成Json串
  41. rapidjson::Document jsonDoc; //生成一个dom元素Document
  42. rapidjson::Document::AllocatorType &allocator = jsonDoc.GetAllocator(); //获取分配器
  43. jsonDoc.SetObject(); //将当前的Document设置为一个object,也就是说,整个Document是一个Object类型的dom元素
  44.  
  45. //添加属性
  46. jsonDoc.AddMember("name","qfl",allocator); //添加字符串值
  47. jsonDoc.AddMember("age",20,allocator); //添加int类型值
  48.  
  49. //生成array
  50. rapidjson::Value letterArray(rapidjson::kArrayType);//创建一个Array类型的元素
  51. letterArray.PushBack("a",allocator);
  52. letterArray.PushBack("b",97); background:transparent">"c",allocator);
  53. jsonDoc.AddMember("letter",letterArray,128); background:transparent">//添加数组
  54.  
  55. //生成一个object
  56. rapidjson::Value locationObj(rapidjson::kObjectType);//创建一个Object类型的元素
  57. locationObj.AddMember("province",97); background:transparent">"fujian",allocator);
  58. locationObj.AddMember("city",97); background:transparent">"xiamen",97); background:transparent">"number",112); background:transparent">16,97); background:transparent">"location",locationObj,allocator); //添加object到Document中
  59.  
  60. //生成一个object数组
  61. rapidjson::Value bookArray//生成一个Array类型的元素,用来存放Object
  62. rapidjson::Value book1(rapidjson::kObjectType); //生成book1
  63. book1.AddMember("book1",allocator);
  64. book1.AddMember("isbn",97); background:transparent">"123",allocator);
  65. bookArray.PushBack(book1,allocator); //添加到数组
  66.  
  67. rapidjson::Value book2//生成book2
  68. book2.AddMember("book2",allocator);
  69. book2.AddMember("456",allocator);
  70. bookArray.PushBack(book2,128); background:transparent">//添加到数组
  71. jsonDoc.AddMember("book",bookArray,allocator);
  72.  
  73. "healthy",true,128); background:transparent">//添加bool类型值
  74. // jsonDoc.AddMember("sports",NULL,allocator);//添加空值,这里会导致报错
  75.  
  76. //生成字符串
  77. rapidjson::StringBuffer buffer;
  78. rapidjson::Writer<rapidjson::StringBuffer> writer(buffer);
  79. jsonDoc.Accept(writer);
  80.  
  81. std::string strJson = buffer.GetString();
  82. log("-----生成的Json:\n%s",strJson.c_str());
  83.  
  84. //写到文件
  85. string strPath = FileUtils::getInstance()->getWritablePath() + "JsonFile.txt";
  86. FILE* myFile = fopen(strPath.c_str(),97); background:transparent">"w"); //windows平台要使用wb
  87. if (myFile) {
  88. fputs(buffer.GetString(),myFile);
  89. fclose(myFile);
  90. }
  91.  
  92. //JsonFile.txt文件内容
  93. //{"name":"qfl","age":20,"letter":["a","location":{"province":"fujian","number":16},"book":[{"name":"book1","healthy":true}
  94.  
  95. "-----读取Json内容:");
  96. //从文件中读取(注意和上面分开,不能确定文件是否生成完毕,这里读取可能有问题)
  97. rapidjson::Document newDoc;
  98. myFile = fopen(strPath.c_str(),97); background:transparent">"r"); //windows平台使用rb
  99. if (myFile) {
  100. rapidjson::FileStream inputStream(myFile); //创建一个输入流
  101. newDoc.ParseStream<0>(inputStream); //将读取的内容转换为dom元素
  102. fclose(myFile); //关闭文件,很重要
  103. }
  104. //判断解析从流中读取的字符串是否有错误
  105. if (newDoc.HasParseError()) {
  106. "Json Parse error:%d",newDoc.GetParseError()); //打印错误编号
  107. }
  108. else {
  109. //获取json串中的数据
  110. //先判断是否有这个字段,如果使用不存在的key去取值会导致直接崩溃
  111. if (newDoc.HasMember("name")) {
  112. "name:%s",newDoc["name"].GetString()); //必须要获取对应的数据类型,rapidjson不会帮你转换类型
  113. }
  114. else {}
  115.  
  116. "age")) {
  117. "age:%d",97); background:transparent">"age"].GetInt()); //获取正确的类型
  118. }
  119. "letter")) {
  120. rapidjson::Value letter; //使用一个新的rapidjson::Value来存放array的内容
  121. letter = newDoc["letter"];
  122.  
  123. //确保它是一个Array,而且有内容
  124. if (letter.IsArray() && !letter.Empty()) {
  125. //遍历Array中的内容
  126. for (rapidjson::SizeType i = 0; i < letter.Size(); i++) {
  127. "letter:%s",letter[i].GetString());
  128. }
  129. }
  130. else {}
  131. }
  132. "location")) {
  133. rapidjson::Value location; //使用一个新的rapidjson::Value来存放object
  134. location = newDoc["location"];
  135.  
  136. //确保它是一个Object
  137. if (location.IsObject()) {
  138.  
  139. if (location.HasMember("province")) {
  140. "location:province:%s",location["province"].GetString());
  141. }
  142. else {}
  143. "city")) {
  144. "location:city:%s",97); background:transparent">"city"].GetString());
  145. }
  146. "number")) {
  147. "location:number:%d",97); background:transparent">"number"].GetInt());
  148. }
  149. else {}
  150. }
  151. else {}
  152.  
  153. //book是一个包含了2个object的array。按照上面的步骤来取值就行
  154. "book")) {
  155. rapidjson::Value book;
  156. book = newDoc["book"];
  157.  
  158. //先取Array
  159. if (book.IsArray() && !book.Empty()) {
  160.  
  161. rapidjson::Value tempBook;
  162. 0; i < book.Size(); i++) {
  163. tempBook = book[i]; //Array中每个元素又是一个Object
  164.  
  165. if (tempBook.IsObject()) {
  166.  
  167. if (tempBook.HasMember("name") && tempBook.HasMember("isbn")) {
  168. "book:%d:name:%s,isbn:%s",i,tempBook["name"].GetString(),97); background:transparent">"isbn"].GetString());
  169. }
  170. else {}
  171. }
  172. else {}
  173. }
  174. }
  175. "healthy")) {
  176. if (newDoc["healthy"].GetBool()) {
  177. "healthy:true");
  178. }
  179. else {
  180. "healthy:false");
  181. }
  182. }
  183. else {}
  184. }
  185. }

猜你在找的Json相关文章