这是我的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而言却并非如此。

最佳答案

如pst所指出,问题原来是BOM。在Xcode中,如果右键单击文件名,选择“打开为”,然后选择“十六进制”,则会看到:

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

原始答案:

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

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

但是我使用JSONKitNSJSONSerialization解析了您的JSON,没有发生任何事件。
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);

10-05 22:49