jsonkit解码
您好,我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用 http://code.google.com/p/json-framework/。
您的代码将如下所示。并且您需要包含
#import "JSON.h"
我认为问题出在字符串编码上。
Try to use http://code.google.com/p/json-framework/.
Your code will look like this. And you need to include
#import "JSON.h"
I think the problem is from string encoding.