在Cocos2d-x中如何urlencode和解码来自webservice的数据

时间:2015-10-19 16:40:18

标签: android json httprequest cocos2d-x urlencode

我在google,cocos2d-x wiki,讨论论坛以及stackoverflow上搜索了这个,但是没有得到任何答案。

我有一个以urlencoded形式提供json字符串的Web服务。如何在cocos2d-x中解码,然后将其转换为JSON并使用它?

我是cocos2d-x的新手。任何帮助都会受到欢迎。

2 个答案:

答案 0 :(得分:0)

你可以使用cJSON解析器,它的好用且易于使用。 http://sourceforge.net/projects/cjson/

答案 1 :(得分:0)

这取决于解码格式。这是base64解码。 如果您需要编码,请告诉我。 要将解码字符串解析为Json,请使用rapidjson。它已经在cocos2dx中了
//解码

static inline bool is_base64(unsigned char c) {
  return (isalnum(c) || (c == '+') || (c == '/'));
}

string Util::base64_decode(string const& encoded_string) {

      static const std::string base64_chars =
      "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
      "abcdefghijklmnopqrstuvwxyz"
      "0123456789+/";

      int in_len = encoded_string.size();
      int i = 0;
      int j = 0;
      int in_ = 0;
      unsigned char char_array_4[4], char_array_3[3];
      std::string ret;

      while (in_len-- && ( encoded_string[in_] != '=') && is_base64(encoded_string[in_])) {
        char_array_4[i++] = encoded_string[in_]; in_++;
        if (i ==4) {
          for (i = 0; i <4; i++)
            char_array_4[i] = base64_chars.find(char_array_4[i]);

          char_array_3[0] = (char_array_4[0] << 2) + ((char_array_4[1] & 0x30) >> 4);
          char_array_3[1] = ((char_array_4[1] & 0xf) << 4) + ((char_array_4[2] & 0x3c) >> 2);
          char_array_3[2] = ((char_array_4[2] & 0x3) << 6) + char_array_4[3];

          for (i = 0; (i < 3); i++)
            ret += char_array_3[i];
          i = 0;
        }
      }

      if (i) {
        for (j = i; j <4; j++)
          char_array_4[j] = 0;

        for (j = 0; j <4; j++)
          char_array_4[j] = base64_chars.find(char_array_4[j]);

        char_array_3[0] = (char_array_4[0] << 2) + ((char_array_4[1] & 0x30) >> 4);
        char_array_3[1] = ((char_array_4[1] & 0xf) << 4) + ((char_array_4[2] & 0x3c) >> 2);
        char_array_3[2] = ((char_array_4[2] & 0x3) << 6) + char_array_4[3];

        for (j = 0; (j < i - 1); j++) ret += char_array_3[j];
      }

      return ret;
    }