我很难在iOS 5上解析下面的JSON字符串。
{"States": [{"Name": "Arizona","Cities": [{"Name": "Phoenix"}]},{"Name": "California","Cities": [{"Name": "Orange County"},{"Name": "Riverside"},{"Name": "San Diego"},{"Name": "San Francisco"}]},{"Name": "Nevada","Cities": [{"Name": "Las Vegas"}]}]}
这是我的代码:
- (void) parseJson {
NSError *jsonError = nil;
NSData *jsonData = [NSData dataWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"Locations-JSON" ofType:@"rtf"]];
if (jsonData) {
NSDictionary *jsonObjects = [NSJSONSerialization JSONObjectWithData:jsonData options:NSJSONReadingMutableContainers error:&jsonError];
if (jsonError) {
NSLog(@"JSON Error: %@", [jsonError localizedDescription]);
return;
}
NSLog(@"%@", jsonObjects);
}
}
我一直收到这个错误:
JSON Error: The operation couldn’t be completed. (Cocoa error 3840.)
我很欣赏这方面的一些帮助,因为我显然无法解决这个问题。
答案 0 :(得分:22)
有一件事让我感到不正确:
[[NSBundle mainBundle] pathForResource:@"Locations-JSON" ofType:@"rtf"]
您的数据是RTF文件?它应该是txt
文件(或任何其他类型的纯文本文件)。 RTF文件通常包含文本格式数据,如下所示:
{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
{\colortbl;\red255\green255\blue255;}
\margl1440\margr1440\vieww10800\viewh8400\viewkind0
\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural
\f0\fs24 \cf0 \{"States": [\{"Name": "Arizona","Cities": [\{"Name": "Phoenix"\}]\},\{"Name": "California","Cities": [\{"Name": "Orange County"\},\{"Name": "Riverside"\},\{"Name": "San Diego"\},\{"Name": "San Francisco"\}]\},\{"Name": "Nevada","Cities": [\{"Name": "Las Vegas"\}]\}]\}}
当我作为数据读取 并尝试将其解析为JSON时,我得到了您所看到的3840错误。该错误的描述说:
无法读取数据,因为它已损坏。 (字符2周围的对象中的值没有字符串键。)
所以我觉得你实际上并没有JSON。你有RTF数据。
答案 1 :(得分:11)
我遇到了类似的问题。当我从服务器下载JSON数据时,我的JSON解析器会间歇性地工作。您是否从此功能获得了JSON数据?
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
从此函数返回的NSData可能是部分数据。您需要将appendData附加到类型为:NSMutableData的实例变量。然后在另一个函数中处理JSON,如下所示:
- (void)connectionDidFinishLoading:(NSURLConnection *)connection
阅读本文了解详情。它对我有用
答案 2 :(得分:10)
我能够通过将NSData
对象转换为NSString
来解决我的JSON 3840错误:
NSError *error;
NSObject *object = [NSJSONSerialization JSONObjectWithData:responseData options:kNilOptions error:&error];
if (object == nil) {
NSString *serverResponse = [[NSString alloc] initWithData:responseData encoding:NSASCIIStringEncoding];
NSLog(@"\n\nError:\n%@\n\nServer Response:\n%@\n\nCrash:", error.description, serverResponse);
[NSException raise:@"Invalid Data" format:@"Unable to process web server response."];
}
答案 3 :(得分:1)
如果你因为JSON到达这里而不是因为RTF,请查看以下答案: IOS JSON Deserialization failure - STIG/NSJSONSerializer