2

我正在尝试使用 NSJsonSerialization 反序列化来自服务器的 JSON。服务器返回一个转换为字符串的 png 图像。这是我的代码:

    NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:urlString]];
    NSOperationQueue *queue = [[NSOperationQueue alloc] init];
    [NSURLConnection sendAsynchronousRequest:request queue:queue completionHandler:^(NSURLResponse *response, NSData *data, NSError *error) {
        NSError *deserializationError;
        id jsonObject = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers | NSJSONReadingMutableLeaves error:&deserializationError];
        if (deserializationError) {
            NSLog(@"JSON deserialization error: %@", deserializationError.localizedDescription);
            return;
        }
} ];

这是我从服务器收到的信息:

{"photo":"�PNG\r\n\u001A\n\u0000\u0000\u0000\rIHDR\u0000\u0000\u0000:\u0000\u0000\u0000:\b\u0002\u0000\u0000\u0000n��\u007F\u0000\u0000\u001FrIDATx�}z\u0005W[y��|��..."}

但我在解析 JSON 时出错:“JSON 反序列化错误:操作无法完成。(Cocoa 错误 3840。)”。我认为问题在于 JSON 的格式。但是那些写服务器端的人说他们可以成功地反序列化这个对象。有什么建议如何处理这个 JSON?

4

2 回答 2

1

据我所知,JSON 响应必须是字符串。您得到的图像看起来像是破坏 JSON 解析的图像数据NSPropertyListErrorMinimumCocoa 错误域:3840)。服务器端 JSON 需要发送编码为 base64 字符串的图像。这将使 JSON 在客户端保持有效..

您可以解码 base64 编码图像以在客户端获取图像数据。使用NSData类别可帮助您将 base64 字符串解码为NSData.

NSData *imageData = [NSData dataWithBase64EncodedString:base64JSONString];
// Create image with data
UIImage *image = [[UIImage alloc] initWithData:imageData];

希望有帮助!

于 2013-09-16T10:24:17.510 回答
0

ImageData无法直接转移到NSString,您可以通过以下方式执行此操作GMTBase64

编码

NSString *imgStr = [GTMBase64 stringByEncodingData:imageData];

解码

NSData *imageData = [GTMBase64 decodeString:imageStr];

转换为图像

UIImage *image = [[UIImage alloc]initWithData:imageData];
于 2013-09-16T10:24:03.587 回答