Cocos2d-x 3.0 加入了rapidjson库用于json解析。位于external/json下。

rapidjson 项目地址:http://code.google.com/p/rapidjson/wiki:http://code.google.com/p/rapidjson/wiki/UserGuide

下面就通过实例代码讲解rapidjson的用法。

使用rapidjson解析json串

  1. 引入头文件

    1
    2
    #include "json/rapidjson.h"
    #include "json/document.h"
  2. json解析

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    std::string str = "{\"hello\" : \"word\"}";
    CCLOG("%s\n", str.c_str());
    rapidjson::Document d;
    d.Parse<0>(str.c_str());
    if (d.HasParseError())  //打印解析错误
    {
        CCLOG("GetParseError %s\n",d.GetParseError());
    }
     
    if (d.IsObject() && d.HasMember("hello")) {
     
        CCLOG("%s\n", d["hello"].GetString());//打印获取hello的值
    }
  3. 打印结果

    1
    2
    3
    cocos2d: {"hello" : "word"}
     
    cocos2d: word

注意:只支持标准的json格式,一些非标准的json格式不支持。

一些常用的解析方法需要自己封装。注意判断解析节点是否存在。

使用rapidjson生成json串

  1. 引入头文件

    1
    2
    3
    4
    #include "json/document.h"
    #include "json/writer.h"
    #include "json/stringbuffer.h"
    using namespace  rapidjson;
  2. 生成json串

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    rapidjson::Document document;
    document.SetObject();
    rapidjson::Document::AllocatorType& allocator = document.GetAllocator();
    rapidjson::Value array(rapidjson::kArrayType);
    rapidjson::Value object(rapidjson::kObjectType);
    object.AddMember("int", 1, allocator);
    object.AddMember("double", 1.0, allocator);
    object.AddMember("bool", true, allocator);
    object.AddMember("hello", "你好", allocator);
    array.PushBack(object, allocator);
     
    document.AddMember("json", "json string", allocator);
    document.AddMember("array", array, allocator);
     
    StringBuffer buffer;
    rapidjson::Writer<StringBuffer> writer(buffer);
    document.Accept(writer);
     
    CCLOG("%s",buffer.GetString());
  3. 打印结果

    1
    cocos2d: {"json":"json string","array":[{"int":1,"double":1,"bool":true

    Cocos2d-x 已经加入了tinyxml2用于xml的解析。3.0版本位于external/tinyxml2下。2.x版本位于cocos2dx/support/tinyxml2下。

    tinyxml2 Github地址:https://github.com/leethomason/tinyxml2

    帮助文档地址:http://grinninglizard.com/tinyxml2docs/index.html

    生成xml文档

    1. 引入头文件

      1
      2
      #include "tinyxml2/tinyxml2.h"
      using namespace tinyxml2;
    2. xml文档生成

      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      17
      18
      19
      20
      21
      22
      23
      24
      25
      26
      27
      28
      29
      30
      31
      32
      33
      34
      35
      36
      37
      38
      39
      40
      41
      42
      void  HelloWorld::makeXML(const char *fileName)
      {
      std::string filePath = FileUtils::getInstance()->getWritablePath() + fileName;
       
      XMLDocument *pDoc = new XMLDocument();
       
      //xml 声明(参数可选)
      XMLDeclaration *pDel = pDoc->NewDeclaration("xml version=\"1.0\" encoding=\"UTF-8\"");
       
      pDoc->LinkEndChild(pDel);
       
      //添加plist节点
      XMLElement *plistElement = pDoc->NewElement("plist");
      plistElement->SetAttribute("version", "1.0");
      pDoc->LinkEndChild(plistElement);
       
      XMLComment *commentElement = pDoc->NewComment("this is xml comment");
      plistElement->LinkEndChild(commentElement);
       
      //添加dic节点
      XMLElement *dicElement = pDoc->NewElement("dic");
      plistElement->LinkEndChild(dicElement);
       
      //添加key节点
      XMLElement *keyElement = pDoc->NewElement("key");
      keyElement->LinkEndChild(pDoc->NewText("Text"));
      dicElement->LinkEndChild(keyElement);
       
      XMLElement *arrayElement = pDoc->NewElement("array");
      dicElement->LinkEndChild(arrayElement);
       
      for (int i = 0; i<3; i++) {
          XMLElement *elm = pDoc->NewElement("name");
          elm->LinkEndChild(pDoc->NewText("Cocos2d-x"));
          arrayElement->LinkEndChild(elm);
      }
       
      pDoc->SaveFile(filePath.c_str());
      pDoc->Print();
       
      delete pDoc;
      }
    3. 打印结果

      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      <?xml version="1.0" encoding="UTF-8"?>
      <plist version="1.0">
      <!--this is xml comment-->
      <dic>
          <key>Text</key>
          <array>
              <name>Cocos2d-x</name>
              <name>Cocos2d-x</name>
              <name>Cocos2d-x</name>
          </array>
      </dic>
      </plist>

    上面代码使用tinyxml简单生成了一个xml文档。

    解析xml

    下面我们就来解析上面创建的xml文档

    1. 引入头文件

      1
      2
      #include "tinyxml2/tinyxml2.h"
      using namespace tinyxml2;
    2. xml解析

      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      17
      18
      19
      20
      21
      22
      23
      24
      25
      26
      27
      28
      29
      30
      31
      32
      33
      34
      35
      void HelloWorld::parseXML(const char *fileName)
      {
       
      std::string filePath = FileUtils::getInstance()->getWritablePath() + fileName;
      XMLDocument *pDoc = new XMLDocument();
      XMLError errorId = pDoc->LoadFile(filePath.c_str());
       
      if (errorId != 0) {
          //xml格式错误
          return;
      }
       
      XMLElement *rootEle = pDoc->RootElement();
       
      //获取第一个节点属性
      const XMLAttribute *attribute = rootEle->FirstAttribute();
      //打印节点属性名和值
      log("attribute_name = %s,attribute_value = %s", attribute->Name(), attribute->Value());
       
      XMLElement *dicEle = rootEle->FirstChildElement("dic");
      XMLElement *keyEle = dicEle->FirstChildElement("key");
      if (keyEle) {
          log("keyEle Text= %s", keyEle->GetText());
      }
       
      XMLElement *arrayEle = keyEle->NextSiblingElement();
      XMLElement *childEle = arrayEle->FirstChildElement();
      while ( childEle ) {
          log("childEle Text= %s", childEle->GetText());
          childEle = childEle->NextSiblingElement();
      }
       
      delete pDoc;
       
      }

      在节点解析过程中,注意对获取到的节点进行判空处理。

    3. 解析结果打印

      1
      2
      3
      4
      5
      cocos2d: attribute_name = version,attribute_value = 1.0
      cocos2d: keyEle Text= Text
      cocos2d: childEle Text= Cocos2d-x
      cocos2d: childEle Text= Cocos2d-x
      cocos2d: childEle Text= Cocos2d-x

    小结

    上面的简单示例,演示了如何使用tinyxml进行xml文档生成和解析。更多详细的帮助请参考 tinyxml帮助文档http://grinninglizard.com/tinyxml2docs/index.html

Cocos2d-x 3.0 Json用法 Cocos2d-x xml解析的更多相关文章

  1. (27)Cocos2d-x 3.0 Json用法

    Cocos2d-x 3.0 加入了rapidjson库用于json解析.位于external/json下. rapidjson 项目地址:http://code.google.com/p/rapidj ...

  2. UI进阶 解析XML 解析JSON

    1.数据解析 解析的基本概念 所谓“解析”:从事先规定好的格式中提取数据 解析的前提:提前约定好格式,数据提供方按照格式提供数据.数据获取方则按照格式获取数据 iOS开发常见的解析:XML解析.JSO ...

  3. 高屋建瓴 cocos2d-x-3.0架构设计 Cocos2d (v.3.0) rendering pipeline roadmap(原文)

    Cocos2d (v.3.0) rendering pipeline roadmap Why (the vision) The way currently Cocos2d does rendering ...

  4. C++通过jsoncpp类库读写JSON文件-json用法详解

    介绍: JSON 是常用的数据的一种格式,各个语言或多或少都会用的JSON格式. JSON是一个轻量级的数据定义格式,比起XML易学易用,而扩展功能不比XML差多少,用之进行数据交换是一个很好的选择. ...

  5. JSON: JSON 用法

    ylbtech-JSON: JSON 用法 1. JSON Object creation in JavaScript返回顶部 1. <!DOCTYPE html> <html> ...

  6. .NET3.5中JSON用法以及封装JsonUtils工具类

    .NET3.5中JSON用法以及封装JsonUtils工具类  我们讲到JSON的简单使用,现在我们来研究如何进行封装微软提供的JSON基类,达到更加方便.简单.强大且重用性高的效果. 首先创建一个类 ...

  7. linux find命令中-print0和xargs中-0的用法

    linux find命令中-print0和xargs中-0的用法. 1.默认情况下, find命令每输出一个文件名, 后面都会接着输出一个换行符 ('\n'), 因此find 的输出都是一行一行的: ...

  8. json用法常见错误

    Json用法三个常见错误   net.sf.json.JSONException: java.lang.NoSuchMethodException

  9. 问题:c# newtonsoft.json使用;结果:Newtonsoft.Json 用法

    Newtonsoft.Json 用法 Newtonsoft.Json 是.NET 下开源的json格式序列号和反序列化的类库.官方网站: http://json.codeplex.com/ 使用方法 ...

随机推荐

  1. 在JavaScript中,arguments是对象的一个特殊属性。

    arguments对象 function函数的内置参数的"数组"/"集合":同时arguments对象就像数组,但是它却不是数组. 常用属性: 1.length ...

  2. mysql-python

    sudo pip install MySQL-python centos安装 python-dev包提示No package python-dev available: 出现此问题的原因是python ...

  3. sphinx安装记录 转

    [转]sphinx服务器安装及配置详解 安装PHP sphinx扩展 1.架构:ip192.168.0.200 redhat5.4(64位)2.安装   #cd /usr/local/src   #y ...

  4. sql编程小结

    对照mysql5.1手册,对这几天学的sql编程进行小结,主要涉及触发器.存储过程.权限管理.主从分离等,权当抛砖引玉,高手请略过. 一.触发器 通俗的说就是在指定的数据表增删改的前或后触发执行特定的 ...

  5. js正则,电话,邮箱

    1. <script type="text/javascript"> var str="Is this all th05777-89856825ere is5 ...

  6. Xcode文档安装

    找到所需文档的下载地址,搜索.dmg 安装位置

  7. OC- .h与.m

    1.只有利用类名调用类方法的时候,不需要在类名后面写*.其他情况下,类名后面统一加上一个* Circle *c1 = [Circle new]; - (BOOL)isInteractWithOther ...

  8. iOS静态库小结--(yoowei)

    准备知识: 1.什么是库? 库是程序代码的集合,是共享程序代码的一种方式 2.根据源代码的公开情况,库可以分为2种类型 a.开源库 公开源代码,能看到具体实现 ,比如SDWebImage.AFNetw ...

  9. iOS 在UILabel显示不同的字体和颜色(转)

    转自:http://my.oschina.net/CarlHuang/blog/138363 在项目开发中,我们经常会遇到在这样一种情形:在一个UILabel 使用不同的颜色或不同的字体来体现字符串, ...

  10. eclipse-4.4.2安装Groovy插件(其他版本eclipse可参考)

    步骤 : 1.启动eclipse,点击help -> Install New Software... 在弹出的窗口中点击:Add... Groovy插件的地址:http://dist.sprin ...