jsonkit解码

发布于 2024-11-08 03:00:16 字数 579 浏览 0 评论 0原文

您好,我使用 jsonkit 反序列化 json 套件数据。这是我使用的代码。

NSString * strResult = [[NSString alloc] initWithData:data   
             encoding:NSUTF8StringEncoding];

nslog(@"strresult");

NSDictionary *deserializedData = [strResult objectFromJSONString]; 

nslog(@"result");

o/p:
"data": {
  "translations": [
   {
    "translatedText": "hello"
   }
  ]
 }
}

 result {
    data =     {
        translations =         (
                        {
                translatedText = "\U091c\U093e\U0928\U093e";
            }
        );
    };
}

问题是什么?????提前致谢

hi im using jsonkit to deserialize json kit data. this is the code i use.

NSString * strResult = [[NSString alloc] initWithData:data   
             encoding:NSUTF8StringEncoding];

nslog(@"strresult");

NSDictionary *deserializedData = [strResult objectFromJSONString]; 

nslog(@"result");

o/p:
"data": {
  "translations": [
   {
    "translatedText": "hello"
   }
  ]
 }
}

 result {
    data =     {
        translations =         (
                        {
                translatedText = "\U091c\U093e\U0928\U093e";
            }
        );
    };
}

what is the problem????? thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最佳男配角 2024-11-15 03:00:16

尝试使用 http://code.google.com/p/json-framework/

您的代码将如下所示。并且您需要包含 #import "JSON.h"

NSString * strResult = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];

NSLog(@"strresult");

NSDictionary *deserializedData = [strResult JSONValue]; 

我认为问题出在字符串编码上。

Try to use http://code.google.com/p/json-framework/.

Your code will look like this. And you need to include #import "JSON.h"

NSString * strResult = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];

NSLog(@"strresult");

NSDictionary *deserializedData = [strResult JSONValue]; 

I think the problem is from string encoding.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文