获取文件资源的各种方式

 1.获取工程info文件

    NSDictionary *infoDic = [[NSBundle mainBundle] infoDictionary];

    eg: 版本号

    NSString *version = [infoDic objectForKey:kCFBundleVersionKey];


2.获取设备信息

   UIDevice *device = [UIDevice currentDevice];

   eg: 设备当前安装的系统,如6.1 、7.1 等等

   NSString * systemVersion = [[UIDevice currentDevice] systemVersion]

    设备类型:iphone ipod

    NSString * model = [[UIDevice currentDevice] model];

    设备标识:

    NSString * udidStr =  [[UIDevice currentDevice] identifierForVendor].UUIDString;



3. 获取资源文件(Bundle Resource中添加的文件)

    NSString *path = [[NSBundle mainBundle]resourcePath];

    NSString *filePath = [[NSString alloc]initWithFormat:@"%@/%@",path,file];

   NSDictionary * _urlDict = [NSDictionary dictionaryWithContentsOfFile:filePath];

   

  获取工程中得本地文件中的指定文件

   NSString *path =  [[NSBundle mainBundle]pathForResource:fileName ofType:type ];

   NSMutableArray *mutArr = [[NSMutableArray alloc]initWithContentsOfFile:filePath];//取出数据


  获取沙河中的文件

   //(1)指定文件夹,(2)设置查找域,(3)是否使用详细路径

    NSArray *document = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);

    NSString *documentsPath = document[0];

    //拼接上要存储的文件路径(前面自动加上/),如果没有此文件系统会自动创建一个

    NSString *newFielPath = [documentsPath stringByAppendingPathComponent:[NSString stringWithFormat:@"%@",filename]];


   自定义对象归档到沙河:[NSKeyedArchiver archiveRootObject:data toFile:newFielPath];//把data存入filename

   自定义对象从沙河解档:id obj = [NSKeyedUnarchiver unarchiveObjectWithFile:filePath];

   基本对象写入沙河:[obj writeToFile:filePath atomically:YES encoding:NSStringEncodingConversionOptions error:nil];

   从沙河读出数据:NSMutableArray  *dict = [NSMutableArray arrayWithContentsOfFile:newFielPath];


转载于:https://my.oschina.net/starmier/blog/386334

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值