首先谈一下自己对iOS中数据持久化这个概念的理解。所谓的数据持久化就是将数据保存在本地硬盘中,这样即使我们的应用退出后再次重启时依然能够拿到之前保存的数据。要谈数据存储方式首先我们需要了解一下Bundle和沙盒的含义:
Bundle:应用程序在手机中的安装路径
沙盒:存储app所有的数据的路径
接下来我们就来实际地看看每个app的bundle和沙盒的地址,其实也是我一直想弄清楚的东西,它们其实都在个人用户下的隐藏文件夹下,以自己创建的工程StepSlider这个工程为例:
沙盒的结构为:
1. Documents : 保存持久化数据,会备份
2. Library : 1. Caches : 保存持久化数据,不会备份
2. Preferences : 保存持久化数据,会备份
3. tmp : 保存临时文件
以上每个目录对应的获取方式:
{
Documents: NSDocumentDirectory
Library: NSLibraryDirectory
Caches: NSCachesDirectory
}
// 1.要查找的文件夹 2.从用户文件夹查找 3.展开目录~ 4.得到的结果是个数组
举例:NSString *path = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)[0];
有个问题是我一直想搞清楚的,这里为什么最后要加[0]?因为还函数返回的是一个NSArray,且因为每个app应用的沙盒地址是唯一的,因此该数组仅有一个元素,所以可以取第一个元素[0]或者lastObject来获取
tmp: NSString *tmp = NSTemporaryDirectory();
数据存储的常用方式主要有以下5种:
1. plist(属性列表)文件 -- 用到文件路径
2. Preference(偏好设置) -- 无需文件路径
3. NSKeyedArchiver(归档/解档) -- 用到文件路径
4. SQLite(FMDB:基于SQLite3 封装的一套OC的API库)
5. Core Data
第一种方式:plist
plist文件中存储的数据都是不需要加密,数据量小,简单的数据,plist文件只能存储NSArray和NSDictionary
- (void)setUpPlist{
NSString *path = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES)[0];
NSString *filePath = [path stringByAppendingString:@"/dyf.plist"];
NSLog(@"filePath======%@",filePath);
NSDictionary *dic = @{
@"name":@"duyingfeng",
@"age":@25,
@"height":@1.75f,
@"weight":@55
};
[dic writeToFile:filePath atomically:YES];
NSDictionary *dic1 = [NSDictionary dictionaryWithContentsOfFile:filePath];
NSLog(@"dic1=====%@",dic1);
}
我们来看一下实际运行效果:
总结起来plist存储和读取过程可以通过一张图来看清:
第二种方式:Preference(偏好设置)
Preference(偏好设置)通常是用来存储应用的一些配置信息的,比如:保存用户的用户名,密码,文本格式等设置,通过NSUserDefaults来存取偏好设置
- (void)setUpSaveUserDefaults {
//获取NSUserDefaults对象,是个单例
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
//存储数据
[defaults setObject:@"dyf" forKey:@"name"];
[defaults setBool:YES forKey:@"isCool"];
[defaults setInteger:25 forKey:@"age"];
[defaults setDouble:1.75f forKey:@"height"];
//强制立刻存储
[defaults synchronize];
}
- (void)setUpReadUserDefaults {
//获取NSUserDefaults对象
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
//读取数据
NSString *name = [defaults objectForKey:@"name"];
BOOL isCool = [defaults boolForKey:@"isCool"];
NSInteger age = [defaults integerForKey:@"age"];
double height = [defaults doubleForKey:@"height"];
NSLog(@"name=%@,isCool=%d,age=%ld,height=%.2f",name,isCool,(long)age,height);
}
运行完成后,存储文件位置以及日志输出结果
第三种方式:NSKeyedArchiver归档
只有遵守了NSCoding协议的对象才可以归档和解档,所有系统的对象都可以直接归档解档。而自定义对象必须手动遵守协议并且实现归档方法和解档方法
encodeWithCoder 和 initWithCoder
1.对于系统的类:
- (void)systemEncodeAndDecode{
NSArray *array = @[@111,@222,@333];
NSString *path = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)[0];
NSString *newPath = [path stringByAppendingString:@"/dyf.plist"];//这里的后缀可以任意吗
[NSKeyedArchiver archiveRootObject:array toFile:newPath];
NSArray *arr = [NSKeyedUnarchiver unarchiveObjectWithFile:newPath];
NSLog(@"取出数组为====%@",arr);
}
插入图片====
2.对于自定义的类
//归档
- (void)saveStudentData{
LPDStudent *stu = [[LPDStudent alloc] init];
stu.name = @"duyingfeng";
stu.age = 18;
stu.height = 1.75f;
NSString *path = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)[0];
NSString *newPath = [path stringByAppendingString:@"/stu.plist"];
[NSKeyedArchiver archiveRootObject:stu toFile:newPath];
}
//解档
- (void)readStudentData{
NSString *path = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)[0];
NSString *newPath = [path stringByAppendingString:@"/stu.plist"];
LPDStudent *stu1 = [NSKeyedUnarchiver unarchiveObjectWithFile:newPath];
NSLog(@"name-%@,age-%d,height-%.2f",stu1.name,stu1.age,stu1.height);
}
插入图片===
3.对于多个对象
使用archiveRootObject:toFile:方法可以将一个对象直接写入到一个文件中,但有时候可能想将多个对象写入到同一个文件中,那么就要使用NSData来进行归档对象
例如:将两个Person对象存入同一文件中
//归档
- (void)saveMutableStudentData{
LPDStudent *stu1 = [[LPDStudent alloc] init];
stu1.name = @"一号";
stu1.age = 13;
stu1.height = 1.55f;
LPDStudent *stu2 = [[LPDStudent alloc] init];
stu2.name = @"二号";
stu2.age = 20;
stu2.height = 1.90f;
NSMutableData *data = [NSMutableData data];
NSKeyedArchiver *archiver = [[NSKeyedArchiver alloc] initForWritingWithMutableData:data];
[archiver encodeObject:stu1 forKey:@"stu1"];
[archiver encodeObject:stu2 forKey:@"stu2"];
[archiver finishEncoding];
NSString *path = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)[0];
NSString *newPath = [path stringByAppendingString:@"/mutable.plist"];
[data writeToFile:newPath atomically:YES];
}
//解档
- (void)readMutableStudentData{
NSString *path = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)[0];
NSString *newPath = [path stringByAppendingString:@"/mutable.plist"];
NSData *data = [NSData dataWithContentsOfFile:newPath];
NSKeyedUnarchiver *unarchiver = [[NSKeyedUnarchiver alloc] initForReadingWithData:data];
LPDStudent *stu1 = [unarchiver decodeObjectForKey:@"stu1"];
LPDStudent *stu2 = [unarchiver decodeObjectForKey:@"sut2"];
[unarchiver finishDecoding];
NSLog(@"stu1===%@,%d,%.2f",stu1.name,stu1.age,stu1.height);
NSLog(@"stu2===%@,%d,%.2f",stu2.name,stu2.age,stu2.height);
}
插入图片=====