如何將plist檔案或者陣列NSArray轉化為.json檔案?

weixin_34337265發表於2017-03-13
2707674-aa5038dce8d79089.jpg
『導言』

目前:有一個plist檔案,如何將plist檔案轉化為陣列、json檔案?NSArray/.plist文件->.json文件plist轉json檔案demo

  • 程式碼如下:
2707674-c5dc6127d740da0f.gif
圖plist轉Json.gif
    // 1 .plist -->arr
    NSArray *arr = [NSArray arrayWithContentsOfFile:@"/Users/zhaowenjuan/Desktop/apps.plist"];
    
    //2 .arr--->json(xml格式)
   [arr writeToFile:@"/Users/zhaowenjuan/Desktop/apps.json" atomically:YES];  //xml格式
    //3 .arr--->json(json格式)
    //OC-JSON
    NSData *data =[NSJSONSerialization dataWithJSONObject:arr options:NSJSONWritingPrettyPrinted error:0];
    [data writeToFile:@"/Users/zhaowenjuan/Desktop/apps2.json" atomically:YES];//json
  • 程式碼分析:
  • 如何將plist檔案轉為陣列?
    // /Users/zhaowenjuan/Desktop/apps.plist
    
    NSArray *arr = [NSArray arrayWithContentsOfFile:@"/Users/zhaowenjuan/Desktop/apps.plist"];
    NSLog(@"arr = %@",arr);
2707674-6278cff34f491677.png
圖.plist檔案
  • 如何將陣列NSArray寫入json檔案?
   [arr writeToFile:@"/Users/zhaowenjuan/Desktop/apps.json" atomically:YES];  //xml格式
2707674-38a96b5ec6f661b6.png
圖.陣列NSArray建立json檔案(xml格式)
  • 如何正確地將陣列或者plist檔案轉化為json格式.json檔案?
  //OC-JSON
    NSData *data =[NSJSONSerialization dataWithJSONObject:arr options:NSJSONWritingPrettyPrinted error:0];
    [data writeToFile:@"/Users/zhaowenjuan/Desktop/apps2.json" atomically:YES];//json
2707674-c417c397ba8ccefd.png
圖.陣列NSArray建立son檔案(son格式)

2707674-4cf5ef6fc923e38d.png
圖.桌面檔案

2707674-67875bedff180bd7.png
圖.轉化邏輯圖

相關文章