这个里主要说的是如何编写JSON格式的字符串。直接上代码比较简单。
MakeJson.h
//
// MakeJson.h
// cpp4
//
// Created by 杜甲 on 14-9-9.
//
//
#ifndef __cpp4__MakeJson__
#define __cpp4__MakeJson__
#include "cocos2d.h"
#include...
分类:
Web程序 时间:
2014-09-09 12:42:08
阅读次数:
185
在cocos2d-x引入了rapidjson,它处理速度比其他的json库快,反正不管了,我们这边只是学习下如何使用。rapidjson官方网址:https://code.google.com/p/rapidjson/wiki/UserGuide,上面有wiki有部分说明文档,可以看下。下面我们.....
#include "json/document.h"#include "json/prettywriter.h"#include "json/stringbuffer.h"void test(){ //read json char json[100] = "{ \"hello\" : \"wo...
//获取一个可写入的全路径
auto path =FileUtils::getInstance()->getWritablePath();
log("%s", path.c_str());
//在这个路径下添加一个json文件
path.append("myhero.json");
rapidjson::Document document;
document.SetObject()...
Size visibleSize = Director::getInstance()->getVisibleSize();
Point origin = Director::getInstance()->getVisibleOrigin();
std::string path = FileUtils::getInstance()->fullPathForFilename("story.js...
2dx3.0下JSON解析库官方已经集成好了,我们引用就OK。
JSON文件hello.json内容
{"pets":["dog","cat"],"stuInfo":{"stuAge":"23","stuName":"zhangsan","birthday":"1990-01-12"},"username":"tomsfff","other":[true,30]}
.h头文件...
分类:
Web程序 时间:
2014-05-03 21:34:48
阅读次数:
319