iOS中的JSON解析错误

时间:2014-12-23 20:18:18

标签: ios json web-services soap

我正在尝试解析json响应(我从SOAP webservice响应的结果标记获得),如下面的图片所示。

NSString *soapMessage = [NSString stringWithFormat:@"<?xml version=\"1.0\" encoding=\"utf-8\"?>"
                         "<soap:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">"
                         "<soap:Body>"
                         "<GetPhotoSession xmlns=\"http://tempuri.org/\">"
                         "<UserID>%@</UserID>"
                         "<photoSessionID>%@</photoSessionID>"
                         "</GetPhotoSession>"
                         "</soap:Body>"
                         "</soap:Envelope>",[HelperClass retrieveStringForKey:kUserID],self.currentSession.sessionID];

NSURL *url = [NSURL URLWithString:kBaseURL];
NSMutableURLRequest *theRequest = [NSMutableURLRequest requestWithURL:url];
NSString *msgLength = [NSString stringWithFormat:@"%lu", (unsigned long)[soapMessage length]];

[theRequest addValue: @"text/xml; charset=utf-8" forHTTPHeaderField:@"Content-Type"];
[theRequest addValue: @"http://tempuri.org/GetPhotoSession" forHTTPHeaderField:@"SOAPAction"];
[theRequest addValue: msgLength forHTTPHeaderField:@"Content-Length"];
[theRequest setHTTPMethod:@"POST"];
[theRequest setHTTPBody: [soapMessage dataUsingEncoding:NSUTF8StringEncoding]];

NSURLConnection *theConnection = [[NSURLConnection alloc] initWithRequest:theRequest delegate:self];

if( theConnection ) {
    self.webResponseData = [NSMutableData data];
}else {
    NSLog(@"Some error occurred in Connection");

}

-(void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response {
    [self.webResponseData  setLength:0];
}

-(void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
    [self.webResponseData  appendData:data];
}

-(void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error {
    NSLog(@"Some error in your Connection. Please try again.");
}

-(void)connectionDidFinishLoading:(NSURLConnection *)connection {
    NSLog(@"Received Bytes from server: %d", [self.webResponseData length]);
    NSString *myXMLResponse = [[NSString alloc] initWithBytes: [self.webResponseData bytes] length:[self.webResponseData length] encoding:NSUTF8StringEncoding];
    NSLog(@"%@",myXMLResponse);

    NSError *errorPointer;

    NSDictionary *dict = [XMLReader dictionaryForXMLString:myXMLResponse error:&errorPointer];

    NSString *jsonData = dict[@"soap:Envelope"][@"soap:Body"][@"GetPhotoSessionResponse"][@"GetPhotoSessionResult"][@"text"];

    NSData *data = [jsonData dataUsingEncoding:NSUTF8StringEncoding];
    id json = [NSJSONSerialization JSONObjectWithData:data options:0 error:&errorPointer];

    NSLog(@"%@",[json objectForKey:@"Head"]);
}

但是我在“json”对象中得到了nil。以下是JSON响应http://pastie.org/9799331的pastie链接。以下是错误指针的描述。

打印errorPointer的说明: 错误域= NSCocoaErrorDomain代码= 3840“操作无法完成。(Cocoa错误3840.)”(JSON文本不是以数组或对象开头,而是选项允许未设置片段。)UserInfo = 0x7d0156a0 {NSDebugDescription = JSON text没有从数组或对象和选项开始,以允许未设置片段。}

1 个答案:

答案 0 :(得分:0)

这是您自己的网络服务还是现有网络服务?如果这是你自己的,你确定你的JSON实际上是正确的吗?

我认为问题在于:

"ImageBase64Data": "/9j/4AAQSkZJRgABAQA .... blah blah ==
"

请注意这里的关键点。关闭双引号是在下一行。它应该是

"ImageBase64Data": "/9j/4AAQSkZJRgABAQA .... blah blah =="

为了将来参考,如果您在问题中剪切并粘贴JSON有效负载文本而不是显示图像,则会容易得多。

从这里抓取您的数据:

http://pastie.org/9799331#2,22,482

我已通过此代码运行它:

NSError *error = nil;
NSString *path = [[NSBundle mainBundle] pathForResource:@"badjson" ofType:@"txt"];
NSString *jsonStr = [NSString stringWithContentsOfFile:path encoding:NSUTF8StringEncoding error:nil];

//    jsonStr = [[jsonStr componentsSeparatedByCharactersInSet:[NSCharacterSet newlineCharacterSet]] componentsJoinedByString:@""];

NSData *jsonData = [jsonStr dataUsingEncoding:NSUTF8StringEncoding];

id json = [NSJSONSerialization JSONObjectWithData:jsonData options:kNilOptions error:&error];

NSLog(@"Error is %@", error);
NSLog(@"JSON is %@", json);

请注意,我现在有一个注释掉的行。当我这样做时,它失败了。但是,失败与上面列出的不同。我明白了。

  

错误是错误域= NSCocoaErrorDomain代码= 3840&#34;操作   无法完成。 (可可误差3840。)&#34; (非转义控制   字符120周围的字符。)UserInfo = 0x7f9519f71510   {NSDebugDescription =字符120周围未转义的控制字符。}

如果我取消注释该行,那么它可以工作。仅显示输出的片段:

2014-12-26 12:03:35.020 Sample[49732:6379864] Error is (null)
2014-12-26 12:03:35.022 Sample[49732:6379864] JSON is {
     Head =     (
                 {
             ID = 1092;
             ImageBase64Data = "/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDACAWGBwYFCAcGhwkIiAmMFA0MCwsMGJGSjpQdGZ6eHJmcG6AkLicgIiuim5woNqirr7EztDOfJri8uDI8LjKzsb/

您的数据使用base64输出,该输出使用换行符分隔每个编码行。这就是为什么你最后看到的文字如下:

==
","ImageName"

你还会注意到Base64中的绝大多数线看起来都是统一的......因为这个分界。

使用此删除换行符(您需要为代码修改它)

jsonStr = [[jsonStr componentsSeparatedByCharactersInSet:[NSCharacterSet newlineCharacterSet]] componentsJoinedByString:@""];

如果这不起作用,那么您需要提供更多信息:

- 是从Xcode控制台获取的输出? - 在您的代码中添加NSLog以获取输出(如果您没有,请添加一个)。 - 一旦添加了NSLog,就提供该输出

虽然您似乎已经提供了信息&#34;,但信息显然存在差距。否则我希望看到相同的NSError输出。因此,我们要么缺少步骤,要么可能存在其他一些差异。例如,我在iOS 8模拟器中运行它。并不是说它应该太重要,但是你总是有可能在不同版本的iOS上运行以不同方式解析JSON。