我正在获取JSON对象并将它们保存在NSString中,如下所示:
// fetch JSON from a Wiki article
NSError *error = nil;
NSString *responseString = [NSString stringWithContentsOfURL:myURL encoding:NSUTF8StringEncoding error:&error];
这一般是有效的,但我的responseString中有\u####
个转义字符,我想要的是相应的UTF8字符,例如: \u2640
应为♀
。
在responseString
中解码所有转义字符的最简单方法是什么?
更新
我在某处读到了我应该尝试使用NSNonLossyASCIIStringEncoding
而不是NSUTF8StringEncoding
来获取JSON,但这会导致错误,因此我根本没有得到responseString
。
然后错误是:
Error Domain=NSCocoaErrorDomain Code=261 "The operation couldn’t be completed. (Cocoa error 261.)"
答案 0 :(得分:6)
不要提取字符串。获取数据并使用NSJSONSerialization
进行转换:
NSData *data = [NSData dataWithContentsOfURL:url];
NSError *error;
id jsonObject = [NSJSONSerialization JSONObjectWithData:data options:0 error:&error];
NSJSONSerialization
自动处理所有引用和转义内容。
jsonObject
将是NSArray
或NSDictionary
,具体取决于输入数据。
备注:dataWithContentsOfURL
阻止当前线程,直到请求完全为止
完成(或超时)。如果这是一个问题,请考虑使用其中一个异步
NSURLConnection
获取数据的方法。)