Cocos2d-x游戏开发之jsoncppdemo

Cocos2d-x游戏开发之jsoncppdemo,第1张

概述//json解析,使用jsoncpp CSJson::Reader reader; CSJson::Value root; if (reader.parse(resData,root)) { int count = root.size(); CCLog("count:%d",count); for (int i = 0; i < count; i++) {//使用int,
	//Json解析,使用Jsoncpp	CSJson::Reader reader;	CSJson::Value root;	if (reader.parse(resData,root)) {		int count = root.size();		cclog("count:%d",count);				for (int i = 0; i < count; i++) {//使用int,否则size_t在mac在重载报错			CSJson::Value temp = root[i];			int ID = temp["ID"].asInt();			string Title = temp["Title"].asstring();						string thumb = temp["thumb"].asstring();			getimageFromServer(thumb);			string url = temp["url"].asstring();			cclog("ID: %d Title:%s thumb:%s url:%s",ID,Title.c_str(),thumb.c_str(),url.c_str());		}	}
总结

以上是内存溢出为你收集整理的Cocos2d-x游戏开发之jsoncppdemo全部内容,希望文章能够帮你解决Cocos2d-x游戏开发之jsoncppdemo所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1001674.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-22
下一篇 2022-05-22

发表评论

登录后才能评论

评论列表(0条)

保存