iOS 數據的持久化存儲

所謂的持久化,就是將數據保存到硬盤中,使得在應用程序或機器重啓後能夠繼續訪問以前保存的數據。在iOS開發中,有不少數據持久化的方案。(iOS程序默認狀況下只能訪問程序本身的目錄,這個目錄被稱爲「沙盒」。)git

plist文件(屬性列表)sql

preference(偏好設置)數據庫

NSKeyedArchiver(歸檔)安全

SQLite 3多線程

CoreData框架

Documents: 最經常使用的目錄,iTunes同步該應用時會同步此文件夾中的內容,適合存儲重要數據。NSString *path = [[NSBundle mainBundle] bundlePath];編碼

NSLog(@"%@", path);atom

Library/Caches: iTunes不會同步此文件夾,適合存儲體積大,不須要備份的非重要數據。spa

NSString *path = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES).firstObject;線程

NSLog(@"%@", path);

Library/Preferences: iTunes同步該應用時會同步此文件夾中的內容,一般保存應用的設置信息。

NSString *path = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES).firstObject;

NSLog(@"%@", path);

tmp: iTunes不會同步此文件夾,系統可能在應用沒運行時就刪除該目錄下的文件,因此此目錄適合保存應用中的一些臨時文件,用完就刪除。

NSString *path = NSTemporaryDirectory();

NSLog(@"%@", path);

二。plist文件

plist文件是將某些特定的類,經過XML文件的方式保存在目錄中。

能夠被序列化的類型只有以下幾種:

NSArray;

NSMutableArray;

NSDictionary;

NSMutableDictionary;

NSData;

NSMutableData;

NSString;

NSMutableString;

NSNumber;

NSDate;

1.得到文件路徑

NSString *path = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES).firstObject;

NSString *fileName = [path stringByAppendingPathComponent:@"123.plist"];

2.存儲

NSArray *array = @[@"123", @"456", @"789"];

[array writeToFile:fileName atomically:YES];

3.讀取

NSArray *result = [NSArray arrayWithContentsOfFile:fileName];

NSLog(@"%@", result);

4.注意

只有以上列出的類型才能使用plist文件存儲。

存儲時使用writeToFile: atomically:方法。 其中atomically表示是否須要先寫入一個輔助文件,再把輔助文件拷貝到目標文件地址。這是更安全的寫入文件方法,通常都寫YES。

讀取時使用arrayWithContentsOfFile:方法。

NSKeyedArchiver

歸檔在iOS中是另外一種形式的序列化,只要遵循了NSCoding協議的對象均可以經過它實現序列化。因爲決大多數支持存儲數據的Foundation和Cocoa Touch類都遵循了NSCoding協議,所以,對於大多數類來講,歸檔相對而言仍是比較容易實現的。

1.遵循NSCoding協議

NSCoding協議聲明瞭兩個方法,這兩個方法都是必須實現的。一個用來講明如何將對象編碼到歸檔中,另外一個說明如何進行解檔來獲取一個新對象。

遵循協議和設置屬性

//1.遵循NSCoding協議

@interface Person : NSObject  //2.設置屬性

@property (strong, nonatomic) UIImage *avatar;

@property (copy, nonatomic) NSString *name;

@property (assign, nonatomic) NSInteger age;

@end

實現協議方法

//解檔

- (id)initWithCoder:(NSCoder *)aDecoder {

if ([super init]) {

self.avatar = [aDecoder decodeObjectForKey:@"avatar"];

self.name = [aDecoder decodeObjectForKey:@"name"];

self.age = [aDecoder decodeIntegerForKey:@"age"];

}

return self;

}

//歸檔

- (void)encodeWithCoder:(NSCoder *)aCoder {

[aCoder encodeObject:self.avatar forKey:@"avatar"];

[aCoder encodeObject:self.name forKey:@"name"];

[aCoder encodeInteger:self.age forKey:@"age"];

}

特別注意

若是須要歸檔的類是某個自定義類的子類時,就須要在歸檔和解檔以前先實現父類的歸檔和解檔方法。即 [super encodeWithCoder:aCoder] 和 [super initWithCoder:aDecoder] 方法;

2.使用

須要把對象歸檔是調用NSKeyedArchiver的工廠方法 archiveRootObject: toFile: 方法。

 

NSString *file = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES).firstObject stringByAppendingPathComponent:@"person.data"];

Person *person = [[Person alloc] init];

person.avatar = self.avatarView.image;

person.name = self.nameField.text;

person.age = [self.ageField.text integerValue];

[NSKeyedArchiver archiveRootObject:person toFile:file];

須要從文件中解檔對象就調用NSKeyedUnarchiver的一個工廠方法 unarchiveObjectWithFile: 便可。

NSString *file = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES).firstObject stringByAppendingPathComponent:@"person.data"];

Person *person = [NSKeyedUnarchiver unarchiveObjectWithFile:file];

if (person) {

self.avatarView.image = person.avatar;

self.nameField.text = person.name;

self.ageField.text = [NSString stringWithFormat:@"%ld", person.age];

}

3.注意

必須遵循並實現NSCoding協議

保存文件的擴展名能夠任意指定

繼承時必須先調用父類的歸檔解檔方法

FMDB

1.簡介

FMDB是iOS平臺的SQLite數據庫框架,它是以OC的方式封裝了SQLite的C語言API,它相對於cocoa自帶的C語言框架有以下的優勢:

使用起來更加面向對象,省去了不少麻煩、冗餘的C語言代碼

對比蘋果自帶的Core Data框架,更加輕量級和靈活

提供了多線程安全的數據庫操做方法,有效地防止數據混亂

注:FMDB的gitHub地址

2.核心類

FMDB有三個主要的類:

FMDatabase

一個FMDatabase對象就表明一個單獨的SQLite數據庫,用來執行SQL語句

FMResultSet

使用FMDatabase執行查詢後的結果集

FMDatabaseQueue

用於在多線程中執行多個查詢或更新,它是線程安全的

3.打開數據庫

和c語言框架同樣,FMDB經過指定SQLite數據庫文件路徑來建立FMDatabase對象,但FMDB更加容易理解,使用起來更容易,使用以前同樣須要導入sqlite3.dylib。打開數據庫方法以下:

NSString *path = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES).firstObject stringByAppendingPathComponent:@"person.db"];

FMDatabase *database = [FMDatabase databaseWithPath:path];

if (![database open]) {

NSLog(@"數據庫打開失敗!");

}

值得注意的是,Path的值能夠傳入如下三種狀況:

具體文件路徑,若是不存在會自動建立

空字符串@"",會在臨時目錄建立一個空的數據庫,當FMDatabase鏈接關閉時,數據庫文件也被刪除

nil,會建立一個內存中臨時數據庫,當FMDatabase鏈接關閉時,數據庫會被銷燬

4.更新

在FMDB中,除查詢之外的全部操做,都稱爲「更新」, 如:create、drop、insert、update、delete等操做,使用executeUpdate:方法執行更新

//經常使用方法有如下3種:

- (BOOL)executeUpdate:(NSString*)sql, ...

- (BOOL)executeUpdateWithFormat:(NSString*)format, ...

- (BOOL)executeUpdate:(NSString*)sql withArgumentsInArray:(NSArray *)arguments

//示例

[database executeUpdate:@"CREATE TABLE IF NOT EXISTS t_person(id integer primary key autoincrement, name text, age integer)"];

//或者

[database executeUpdate:@"INSERT INTO t_person(name, age) VALUES(?, ?)", @"Bourne", [NSNumber numberWithInt:42]];

5.查詢

查詢方法也有3種,使用起來至關簡單:

1

2

3

- (FMResultSet *)executeQuery:(NSString*)sql, ...

- (FMResultSet *)executeQueryWithFormat:(NSString*)format, ...

- (FMResultSet *)executeQuery:(NSString *)sql withArgumentsInArray:(NSArray *)arguments

查詢示例:

//1.執行查詢

FMResultSet *result = [database executeQuery:@"SELECT * FROM t_person"];

//2.遍歷結果集

while ([result next]) {

NSString *name = [result stringForColumn:@"name"];

int age = [result intForColumn:@"age"];

}

6.線程安全

在多個線程中同時使用一個FMDatabase實例是不明智的。不要讓多個線程分享同一個FMDatabase實例,它沒法在多個線程中同時使用。 若是在多個線程中同時使用一個FMDatabase實例,會形成數據混亂等問題。因此,請使用 FMDatabaseQueue,它是線程安全的。如下是使用方法:

建立隊列。

1

FMDatabaseQueue *queue = [FMDatabaseQueue databaseQueueWithPath:aPath];

使用隊列

[queue inDatabase:^(FMDatabase *database) {

[database executeUpdate:@"INSERT INTO t_person(name, age) VALUES (?, ?)", @"Bourne_1", [NSNumber numberWithInt:1]];

[database executeUpdate:@"INSERT INTO t_person(name, age) VALUES (?, ?)", @"Bourne_2", [NSNumber numberWithInt:2]];

[database executeUpdate:@"INSERT INTO t_person(name, age) VALUES (?, ?)", @"Bourne_3", [NSNumber numberWithInt:3]];

FMResultSet *result = [database executeQuery:@"select * from t_person"];

while([result next]) {

}

}];

並且能夠輕鬆地把簡單任務包裝到事務裏:

[queue inTransaction:^(FMDatabase *database, BOOL *rollback) {

[database executeUpdate:@"INSERT INTO t_person(name, age) VALUES (?, ?)", @"Bourne_1", [NSNumber numberWithInt:1]];

[database executeUpdate:@"INSERT INTO t_person(name, age) VALUES (?, ?)", @"Bourne_2", [NSNumber numberWithInt:2]];

[database executeUpdate:@"INSERT INTO t_person(name, age) VALUES (?, ?)", @"Bourne_3", [NSNumber numberWithInt:3]];

FMResultSet *result = [database executeQuery:@"select * from t_person"];

while([result next]) {

}

//回滾

*rollback = YES;

}];

FMDatabaseQueue 後臺會創建系列化的G-C-D隊列,並執行你傳給G-C-D隊列的塊。這意味着 你從多線程同時調用調用方法,GDC也會按它接收的塊的順序來執行。

相關文章
相關標籤/搜索