1

这是我的 post.json 文件:

[
    {
        "Title": "Introduction to WCF",
        "Url": "http://myaddress/videos/introduction-to-wcf",
        "Thumbnail": "http://myaddress/images/20110212_01.jpg",
        "Exceprt": "Introduction to WCF",
        "PostDate": "2011-02-12T14:26:07",
        "Id": 39,
        "Mp4Video": "http://myaddress/2012/05/20110212_01.mp4",
        "Speakers": [
            {
                "Name": "Mark Wilkinson",
                "Slug": "mark-wilkinson"
            }
        ],
        "Groups": [
            {
                "Name": "C# UG",
                "Slug": "cs-ug"
            }
        ],
        "Tags": [
            {
                "Name": "WCF Services",
                "Slug": "wcf-services"
            }
        ]
    }
]

在 jsonlint.org 中发布它并验证。

这是我一直用于其他有效的 JSON 文件的代码:

- (void)test_can_read_from_groups_file_and_build_JSONDictionary {

    id result = [self data_from_JSON_file:@"post"];
    [Assert isNotNil:result];  // is returning as nil, so test is failing
}

- (id)data_from_JSON_file:(NSString *)fileName {

    NSBundle *bundle = [NSBundle bundleForClass:[self class]];
    NSString *jsonString = [bundle pathForResource:fileName ofType:@"json"];
    NSData *data = [NSData dataWithContentsOfFile:jsonString];
    JSONDecoder *decoder = [[JSONDecoder alloc] initWithParseOptions:JKParseOptionNone];

    NSError *error = nil;
    id result =  [decoder objectWithData:data error:&error];
    if (error) {
        NSLog(@"*********\r\r\r\r\r\r\r Error was: %@", [error localizedDescription]);
    }

    return result;
}

从 JSONKit objectWithData 打印出的错误:

Error was: Unexpected token, wanted '{', '}', '[', ']', ',', ':', 'true', 'false', 'null', '"STRING"', 'NUMBER'.

ETA:是的,它处于构建阶段:

在此处输入图像描述

添加:

if (!data)
{
    NSLog(@"\r\r\r\r\r\r%s: data was nil", __FUNCTION__);
    return nil;
}

它没有触及这个分支,所以数据不是零。

使用 JSONKit 解码器更改为:

id results = [NSJSONSerialization JSONObjectWithData:data
                                                 options:kNilOptions error:&error];

并且它有效,仍然对为什么 JSONKit 对我失败但对 Rob 失败感到困惑。

4

1 回答 1

1

正如 pst 指出的那样,问题原来是BOM。在 Xcode 中,如果您右键单击文件名,选择“Open As”并选择“Hex”,您将看到:

十六进制转储

前三个字符显然不是标准的文本字符。幸运的是,您可以在 Xcode 的十六进制编辑器中突出显示这三个字符,删除它们,保存文件,现在应该可以修复它了。


原答案:

另外,您确定 JSON 包含在您的捆绑包中吗(检查“目标设置”的“构建阶段”中的“复制捆绑资源”)。我只是用 Cocoa 标准 JSON 解析类解析了您的 JSON NSJSONSerialization,没有发生意外。也许您应该尝试检查data并确保一切正常:

NSLog(@"data=%@", [[[NSString alloc] initWithData:data] autorelease]);

但是我解析了你的 JSONJSONKit并且NSJSONSerialization没有发生任何事件。

NSString *filename = [[NSBundle mainBundle] pathForResource:@"test" ofType:@"json"];
NSData *data = [NSData dataWithContentsOfFile:filename];
if (!data)
{
    NSLog(@"%s: data was nil", __FUNCTION__);
    return;
}
JSONDecoder *decoder = [[JSONDecoder alloc] initWithParseOptions:JKParseOptionNone];
NSError *error = nil;
id results =  [decoder objectWithData:data error:&error];

//  Also tested with NSJSONSerialization
//
//    id results = [NSJSONSerialization JSONObjectWithData:data
//                                                 options:0
//                                                   error:&error];

if (!error)
    NSLog(@"%s: results = %@", __FUNCTION__, results);
else
    NSLog(@"%s: error = %@", __FUNCTION__, error);
于 2013-03-27T01:53:35.280 回答