JSON数据转plist文件

在工作中,经常有某些固定的值,这些值通常是不会变的,存数据库----麻烦,存本地,这个可以,不过还要在项目中走一次网络请求来获取数据,不如生成一个plist方便.下面教大家把JSON数据转成plist文件的方法

[NetworkHandler getDataByURLString:@"http://app.crhclub.com/v30/flight.ashx?action=airlineCode" BodyString:nil WithDataBlock:^(id result) {
        
        
            
            NSDictionary *jsonDic = result;
            
            NSData *jsonData = [NSJSONSerialization dataWithJSONObject:jsonDic options:0 error:nil];
            
            NSString *filePath= NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)[0];
            
            NSString *newPath = [filePath stringByAppendingString:@"/MaXiaoshuai.json" ];
            
            [jsonData writeToFile:newPath atomically:YES];
            NSLog(@"newPath = %@", newPath);

// 将json数据转成json文件
    

            
            NSArray *array = [NSJSONSerialization JSONObjectWithData:[NSData dataWithContentsOfFile:newPath] options:NSJSONReadingMutableLeaves error:nil];
            NSString *newPlistPath = [NSString stringWithFormat:@"%@%@",[[NSBundle mainBundle] bundlePath],@"/MaXiaoshuai.plist" ];
            [array writeToFile:newPlistPath atomically:YES];
            NSLog(@"newPlistPath = %@", newPlistPath);

     
        
    } WithErrorBlock:^(id result) {

    }];
            ```
 command + shift + G  输入newPlistPath的地址 就可以获取plist文件,拖到项目玩耍去吧
生命不息,代码不止!码农一枚,请多点赞

等等!!!等等!!!如果懒得自己写,下面这个工具送给你,输入json数据直接转plist文件

链接: https://pan.baidu.com/s/1i4BNXel 密码: qghh


你可能感兴趣的:(JSON数据转plist文件)