• 把txt文件中的json字符串写到plist文件中


    - (void)json2Plist
    {
        NSString *filePath = [self applicationDocumentsDirectoryFileName:@"json"];
        NSMutableArray *tempArray = [[NSMutableArray alloc] initWithContentsOfFile:filePath];
        
        //第一次添加数据时,数组为空
        if (tempArray.count == 0) {
            tempArray = [NSMutableArray array];
        }
        
      //文件名(utf-8编码) NSString
    *path = [[NSBundle mainBundle] pathForResource:@"city2" ofType:@"txt"]; NSString *contents = [[NSString alloc] initWithContentsOfFile:path encoding:NSUTF8StringEncoding error:nil]; NSArray *list = [contents componentsSeparatedByString:@","]; for (NSString *tempStr in list) { NSDictionary *dict = [tempStr propertyListFromStringsFileFormat]; [tempArray addObject:dict]; } BOOL success = [tempArray writeToFile:filePath atomically:YES]; NSLog(@"success:%d",success); } #pragma mark - 获取沙盒中的Plist文件路径 - (NSString *)applicationDocumentsDirectoryFileName:(NSString *)fileName { NSString *filePath; //沙盒中的Document文件夹 NSString *documentDirectory = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject]; //获取传来的Plist文件名 NSString *fileNameStr = [NSString stringWithFormat:@"%@.plist",fileName]; filePath = [documentDirectory stringByAppendingPathComponent:fileNameStr]; return filePath; }
    //txt文本格式示例:
    {id = 110000;contents = "北京市";},{id = 120000;contents = "天津市";},{id = 130100;contents = "石家庄市";},{id = 654300;contents = "阿勒泰地区";}
  • 相关阅读:
    html5的离线缓存
    html5的本地存储
    html5的地理位置定位
    html5新添加的表单类型和属性
    html5的鼠标拖拽
    win下svn常用操作笔记
    git常用命令笔记
    centos7下NFS使用与配置
    centos7下mysql5.6的主从复制
    centos7下创建mysql5.6多实例
  • 原文地址:https://www.cnblogs.com/hw140430/p/3889638.html
Copyright © 2020-2023  润新知