转载自:http://blog.csdn.net/geqiandebei/article/details/47977103
CSJON库基本数据格式 cJSON 定义
- typedefstructcJSON{
- structcJSON*next,*prev;//数组对象数据中用到
- structcJSON*child;//数组和对象中指向子数组对象或值
- inttype;//元素的类型,如是对象还是数组
- char*valuestring;//如果是字符串
- intvalueint;//如果是数值
- doublevaluedouble;//如果类型是cJSON_Number
- char*string;//Theitem'snamestring,ifthisitemisthechildof,orisinthelistofsubitemsofanobject.
- }cJSON;
构造JSON:
首先创建JSON主对象
类似的创建数组对象
?