我通过以下方式向服务器发送请求:
- (void) getData
{
NSString *url= @"http://example.com";
NSMutableURLRequest *theRequest= [NSMutableURLRequest requestWithURL:[NSURL URLWithString:url]
cachePolicy:NSURLRequestUseProtocolCachePolicy
timeoutInterval:10.0];
exampleConnection =[[NSURLConnection alloc] initWithRequest:theRequest delegate:self startImmediately:YES];
}
为此,响应是一个 JSON 文件,我将其解析如下:
- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{
NSLog(@"Connection did finish loading %@",[connection currentRequest]);
NSDictionary *exampleDictionary = [NSJSONSerialization JSONObjectWithData:receivedData options: NSJSONReadingAllowFragments error:nil];
NSLog(@"%@", exampleDictionary); // which gives me null
}
响应较早时效果很好。但是现在它给了我一个空值,这显然是因为某些东西阻碍了从 JSON 到 NSDictionary 的转换。我调查发现问题是因为有几个外国字符(中文或其他),解析过程出错了。
我不知道如何解决这个问题。有没有人有任何想法?