美文网首页
iOS JSON文件转Plist文件

iOS JSON文件转Plist文件

作者: Paco_Ke | 来源:发表于2016-10-17 14:16 被阅读127次

NSString *path = [[NSBundle mainBundle] pathForResource:@"china_Updated.json" ofType:nil];

    NSArray *array = [NSJSONSerialization JSONObjectWithData:[NSData dataWithContentsOfFile:path] options:NSJSONReadingMutableLeaves error:nil];

    NSString *newPath = [NSString stringWithFormat:@"%@%@",[[NSBundle mainBundle] bundlePath],@"/city_province.plist" ];
    NSLog(@"newPath = %@", newPath);

    [array writeToFile:newPath atomically:YES];

//注:打印的路径找不到文件,可以尝试搜索本机可找到该文件

相关文章

网友评论

      本文标题:iOS JSON文件转Plist文件

      本文链接:https://www.haomeiwen.com/subject/kkzayttx.html