从数组中生成.json文件

时间:2014-01-27 03:03:57

标签: objective-c c json nsarray converter

有没有办法将大型NSArray转换为.json文件?到目前为止,我已经成功地将csv文件转换为.json,但遗憾的是我提供的数据不是以有组织的格式(数组)提供的。

1 个答案:

答案 0 :(得分:0)

示例代码:

NSArray *list = [[NSArray alloc] initWithObjects: @"1", @"2", @"3"];
NSError *error;
NSData *jsonData = [NSJSONSerialization dataWithJSONObject:list options:NSJSONWritingPrettyPrinted error:&error];

然后你可以通过isValidJSONObject:方法检查JSON,以确保我们获得了有效的JSON。

documentation