首页 > 移动平台 > 详细

IOS 读取本地的Json/plist 文件

时间:2014-08-07 00:21:07      阅读:544      评论:0      收藏:0      [点我收藏+]

一、一般本地可以存储轻量级数据存储 plist  这个主要是操作字典

方法如下:

 NSString * sampleFile= [[[NSBundle mainBundle] bundlePath] stringByAppendingPathComponent:@"sections_auth=4.plist"];
 NSDictionary*  dic_sections = [NSDictionary dictionaryWithContentsOfFile:sampleFile];

 

 

二、有时候也可用json结构解析 这个就不限制了字典、数组都支持

方法如下: 

 NSString *sampleFile = [[[NSBundle mainBundle] bundlePath] stringByAppendingPathComponent:@"file.json"];
 NSString *jsonString = [NSString stringWithContentsOfFile:sampleFile encoding:NSUTF8StringEncoding error:nil];
NSDictionary * dic_sections = [jsonString objectFromJSONString];//即得到了file.json的全部内容 

eg:  file.json 内容如下
{

    "data": [

             [

              "暂无"

              ],

             [

              "资料001",

              "资料002",

              "资料003"

              ],

             [

              "资料001"

              ],

             [

              "资料001",

              "资料002",

              "资料003",

              "资料004"

              ]

             ],

    "head": [

             "保密责任",

             "合同",

             "企业资料",

             "培训资料"

             ]

}

 

IOS 读取本地的Json/plist 文件,布布扣,bubuko.com

IOS 读取本地的Json/plist 文件

原文:http://www.cnblogs.com/someonelikeyou/p/3895861.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!