博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
获取文件资源的各种方式
阅读量:5929 次
发布时间:2019-06-19

本文共 1615 字,大约阅读时间需要 5 分钟。

hot3.png

 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

你可能感兴趣的文章
移动终端高级开发工程师
查看>>
LVM的创建和管理
查看>>
我的友情链接
查看>>
Docker镜像保存为文件及从本地文件导入镜像的方法
查看>>
告警系统主脚本、配置文件及监控项目
查看>>
快速定位线上 Node.js 内存泄漏问题
查看>>
LVS+keepalived
查看>>
2012年HTML5的14个大胆预言
查看>>
VM中CentOS7本地配置yum源方法
查看>>
Shell之Sed常用用法
查看>>
3.1
查看>>
RH253读书笔记(9)-Lab 9 Account Management Methods
查看>>
mysql之分页存储过程实例
查看>>
线性方程组迭代求解——Gauss-Seidel迭代算法(Python实现)
查看>>
3像素文本偏移bug 解决方案
查看>>
条款34:区分接口继承和实现继承
查看>>
树链剖分总结
查看>>
golang中的init函数以及main函数
查看>>
今日头条极速版使用教程
查看>>
MySQL性能调优my.cnf详解
查看>>