深入講解iOS開發中應用資料的儲存方式_IOS

來源:互聯網
上載者:User

XML屬性列表-plist
一、應用沙箱
每個iOS應用都有⾃己的應⽤沙箱(應用沙箱就是檔案系統目錄),與其他檔案系統隔離。應⽤必須待在⾃己的沙箱裡,其他應用不能訪問該沙箱(提示:在IOS8中已經開放訪問)

應⽤沙箱的檔案系統⽬錄,如下圖所示(假設應用的名稱叫Layer)

模擬器應⽤用沙箱的根路徑在: (apple是⽤使用者名稱, 7.0是模擬器版本) /Users/apple/Library/Application Support/iPhone Simulator/7.0/Applications

二、應用沙箱結構分析

應⽤程式包:(上圖中的Layer)包含了所有的資源檔和可執行檔

Documents:儲存應⽤運行時產生的需要持久化的資料,iTunes同步裝置時會備份該目錄。例如,遊戲應用可將遊戲存檔儲存在該目錄

tmp:儲存應⽤運行時所需的臨時資料,使⽤完畢後再將相應的檔案從該目錄刪除。應用沒有運行時,系統也可能會清除該目錄下的檔案。iTunes同步裝置時 不會備份該目錄

Library/Caches:儲存應用運行時⽣成的需要持久化的資料,iTunes同步裝置時不會備份該目錄。⼀一般儲存體積大、不需要備份的非重要資料

Library/Preference:儲存應用的所有喜好設定,iOS的Settings(設定) 應⽤會在該⺫錄中尋找應⽤的設定資訊。iTunes同步裝置時會備份該目錄

三、應用沙箱常見的擷取方式

沙箱根目錄:NSString *home = NSHomeDirectory();
 Documents:(2種⽅方式)

利用沙箱根目錄拼接”Documents”字串

複製代碼 代碼如下:

NSString *home = NSHomeDirectory();
NSString *documents = [home stringByAppendingPathComponent:@"Documents"]; // 不建議採用,因為新版本的作業系統可能會修改目錄名

利用NSSearchPathForDirectoriesInDomains函數
複製代碼 代碼如下:

// NSUserDomainMask 代表從使用者檔案夾下找
// YES 代表展開路徑中的波浪字元“~”
NSArray *array = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, NO); // 在iOS中,只有一個目錄跟傳入的參數匹配,所以這個集合裡面只有一個元素

NSString *documents = [array objectAtIndex:0];

tmp:NSString *tmp = NSTemporaryDirectory();


Library/Caches:(跟Documents類似的2種⽅方法)

利用沙箱根目錄拼接”Caches”字串

利⽤NSSearchPathForDirectoriesInDomains函數(將函數的第2個參數改 為:NSCachesDirectory即可)

Library/Preference:通過NSUserDefaults類存取該目錄下的設定資訊

相應的代碼:

複製代碼 代碼如下:

#import "NJViewController.h"
#import "NJPerson.h"

@interface NJViewController ()
- (IBAction)saveDataBtnClick:(id)sender;
- (IBAction)readDataBtnClick:(id)sender;

@end


複製代碼 代碼如下:

@implementation NJViewController
/**
 *   點擊儲存按鈕
 */
- (IBAction)saveDataBtnClick:(id)sender {
   
    // youtube做法
//    NSString *path = @"/Users/apple/Library/Application Support/iPhone Simulator/7.1/Applications/A6D53E11-DDF0-4392-B2D4-FE77A96888A6/Documents/abc.plist";
   
    // 擷取應用程式根目錄
    NSString *home = NSHomeDirectory();
   
    // 不建議寫/
    //NSString *path = [home stringByAppendingString:@"/Documents"];
    // 不建議Documents寫死
    //NSString *path = [home stringByAppendingPathComponent:@"Documents"];
   
    // NSUserDomainMask 在使用者目錄下尋找
    // YES 代表使用者目錄的~
    // NSDocumentDirectory 尋找Documents檔案夾
    // 建議使用如下方法動態擷取
    NSString *doc = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
    // 拼接檔案路徑
    NSString *path = [doc stringByAppendingPathComponent:@"abc.plist"];
    NSLog(@"%@", path);
   
   
    //NSArray *arr = @[@"lnj", @"28"];
    //[arr writeToFile:path atomically:YES];
   
    // NSDictionary *dict = @{@"name": @"lnj", @"age":@"28"};
    // 調用writeToFile將資料寫入檔案
    // [dict writeToFile:path atomically:YES];
    
    /*
     plist只能儲存系統內建的一些常規的類, 也就是有writeToFile方法的對象才可以使用plist儲存資料
     字串/字典/資料/NSNumber/NSData ...
     */
   
    // 自訂的對象不能儲存到plist中
    NJPerson *p = [[NJPerson alloc] init];
    p.name =@"lnj";
   
    NSDictionary *dict = @{@"person": @"abc"};
    [dict writeToFile:path atomically:YES];
}
/**
 *   點擊讀取按鈕
 */
- (IBAction)readDataBtnClick:(id)sender {
    NSString *doc = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
   
    NSString *path = [doc stringByAppendingPathComponent:@"abc.plist"]
    ;
    // 讀取資料
    NSDictionary *dict = [NSDictionary dictionaryWithContentsOfFile:path];
    NSLog(@"%@", dict);
}
@end

四、屬性列表

屬性列表是一種XML格式的檔案,拓展名為plist

如果對象是NSString、NSDictionary、NSArray、NSData、 NSNumber等類型,就可以使用writeToFile:atomically:⽅法 直接將對象寫到屬性列表檔案中


NSKeydeArchiver歸檔
一、簡單說明

在使用plist進行資料存放區和讀取,只適用於系統內建的一些常用類型才能用,且必須先擷取路徑相對麻煩;
喜好設定(將所有的東西都儲存在同一個檔案夾下面,且主要用於儲存應用的設定資訊)
歸檔:因為前兩者都有一個致命的缺陷,只能儲存常用的類型。歸檔可以實現把自訂的對象存放在檔案中。
二、程式碼範例

1.檔案結構

複製代碼 代碼如下:

//
//  YYViewController.m
//  02-歸檔
//
//  Created by apple on 14-6-7.
//  Copyright (c) 2014年 itcase. All rights reserved.
//

#import "YYViewController.h"
#import "YYPerson.h"

@interface YYViewController ()
- (IBAction)saveBtnOnclick:(id)sender;
- (IBAction)readBtnOnclick:(id)sender;

@end


複製代碼 代碼如下:

@implementation YYViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
}


- (IBAction)saveBtnOnclick:(id)sender {
    //1.建立對象
    YYPerson *p=[[YYPerson alloc]init];
    p.name=@"文頂頂";
    p.age=23;
    p.height=1.7;
   
    //2.擷取檔案路徑
    NSString *docPath=[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)lastObject];
    NSString *path=[docPath stringByAppendingPathComponent:@"person.yangyang"];
    NSLog(@"path=%@",path);
   
    //3.將自訂的對象儲存到檔案中
    [NSKeyedArchiver archiveRootObject:p toFile:path];
   
}

- (IBAction)readBtnOnclick:(id)sender {
    //1.擷取檔案路徑
    NSString *docPath=[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)lastObject];
    NSString *path=[docPath stringByAppendingPathComponent:@"person.yangyang"];
    NSLog(@"path=%@",path);
   
    //2.從檔案中讀取對象
    YYPerson *p=[NSKeyedUnarchiver unarchiveObjectWithFile:path];
    NSLog(@"%@,%d,%.1f",p.name,p.age,p.height);
}
@end


建立一個person類

YYPerson.h檔案

複製代碼 代碼如下:

//
//  YYPerson.h
//  02-歸檔
//
//  Created by apple on 14-6-7.
//  Copyright (c) 2014年 itcase. All rights reserved.
//

#import <Foundation/Foundation.h>

// 如果想將一個自訂對象儲存到檔案中必須實現NSCoding協議
@interface YYPerson : NSObject<NSCoding>

//姓名
@property(nonatomic,copy)NSString *name;
//年齡
@property(nonatomic,assign)int age;
//身高
@property(nonatomic,assign)double height;
@end


YYPerson.m檔案
複製代碼 代碼如下:

//
//  YYPerson.m
//  02-歸檔
//
//  Created by apple on 14-6-7.
//  Copyright (c) 2014年 itcase. All rights reserved.
//

#import "YYPerson.h"

@implementation YYPerson

// 當將一個自訂對象儲存到檔案的時候就會調用該方法
// 在該方法中說明如何儲存自訂對象的屬性
// 也就說在該方法中說清楚儲存自訂對象的哪些屬性
-(void)encodeWithCoder:(NSCoder *)aCoder
{
    NSLog(@"調用了encodeWithCoder:方法");
    [aCoder encodeObject:self.name forKey:@"name"];
    [aCoder encodeInteger:self.age forKey:@"age"];
    [aCoder encodeDouble:self.height forKey:@"height"];
}

// 當從檔案中讀取一個對象的時候就會調用該方法
// 在該方法中說明如何讀取儲存在檔案中的對象
// 也就是說在該方法中說清楚怎麼讀取檔案中的對象
-(id)initWithCoder:(NSCoder *)aDecoder
{
    NSLog(@"調用了initWithCoder:方法");
    //注意:在構造方法中需要先初始化父類的方法
    if (self=[super init]) {
        self.name=[aDecoder decodeObjectForKey:@"name"];
        self.age=[aDecoder decodeIntegerForKey:@"age"];
        self.height=[aDecoder decodeDoubleForKey:@"height"];
    }
    return self;
}
@end


3.列印效果和兩個重要的錯誤提示

點擊儲存按鈕和讀取按鈕,成功列印結果如下:

關於不實現兩個協議方法的錯誤提示:

-(void)encodeWithCoder:(NSCoder *)aCoder方法:

-(id)initWithCoder:(NSCoder *)aDecoder方法:

三、繼承類中的使用

建立一個學生類,讓這個類繼承自Preson這個類,增加一個體重的屬性。

YYstudent.h檔案

複製代碼 代碼如下:

//
//  YYstudent.h
//  02-歸檔
//
//  Created by apple on 14-6-7.
//  Copyright (c) 2014年 itcase. All rights reserved.
//

#import "YYPerson.h"

@interface YYstudent : YYPerson
//增加一個體重屬性
@property(nonatomic,assign) double weight;
@end


YYstudent.m檔案
複製代碼 代碼如下:

//
//  YYstudent.m
//  02-歸檔
//
//  Created by apple on 14-6-7.
//  Copyright (c) 2014年 itcase. All rights reserved.
//

#import "YYstudent.h"

@implementation YYstudent

//在子類中重寫這兩個方法
- (void)encodeWithCoder:(NSCoder *)aCoder
{
    [super encodeWithCoder:aCoder];
    NSLog(@"調用了YYStudent encodeWithCoder");
    [aCoder encodeFloat:self.weight forKey:@"weight"];
}

- (id)initWithCoder:(NSCoder *)aDecoder
{
    if (self = [super initWithCoder:aDecoder]) {
        NSLog(@"調用了YYstudent initWithCoder");
        self.weight = [aDecoder decodeFloatForKey:@"weight"];
    }
    return self;
}
@end


YYViewController.m檔案
複製代碼 代碼如下:

//
//  YYViewController.m
//  02-歸檔
//
//  Created by apple on 14-6-7.
//  Copyright (c) 2014年 itcase. All rights reserved.
//

#import "YYViewController.h"
#import "YYPerson.h"
#import "YYstudent.h"

@interface YYViewController ()
- (IBAction)saveBtnOnclick:(id)sender;
- (IBAction)readBtnOnclick:(id)sender;

@end


複製代碼 代碼如下:

@implementation YYViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
}


- (IBAction)saveBtnOnclick:(id)sender {
    //1.建立對象
//    YYPerson *p=[[YYPerson alloc]init];
//    p.name=@"文頂頂";
//    p.age=23;
//    p.height=1.7;
    
    YYstudent *s=[[YYstudent alloc]init];
    s.name=@"wendingding";
    s.age=23;
    s.height=1.7;
    s.weight=62;
    //2.擷取檔案路徑
    NSString *docPath=[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)lastObject];
    NSString *path=[docPath stringByAppendingPathComponent:@"person.yangyang"];
    NSLog(@"path=%@",path);
   
    //3.將自訂的對象儲存到檔案中
//    [NSKeyedArchiver archiveRootObject:p toFile:path];
     [NSKeyedArchiver archiveRootObject:s toFile:path];
   
}

- (IBAction)readBtnOnclick:(id)sender {
    //1.擷取檔案路徑
    NSString *docPath=[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)lastObject];
    NSString *path=[docPath stringByAppendingPathComponent:@"person.yangyang"];
    NSLog(@"path=%@",path);
   
    //2.從檔案中讀取對象
//    YYPerson *p=[NSKeyedUnarchiver unarchiveObjectWithFile:path];
//    NSLog(@"%@,%d,%.1f",p.name,p.age,p.height);
    YYstudent *s=[NSKeyedUnarchiver unarchiveObjectWithFile:path];
    NSLog(@"%@,%d,%.1f,%f",s.name,s.age,s.height,s.weight);
}
@end


點擊儲存按鈕和讀取按鈕後的列印輸出:

四、重要說明

1.儲存資料過程:

複製代碼 代碼如下:

//1.建立對象
    YYstudent *s=[[YYstudent alloc]init];
    s.name=@"wendingding";
    s.age=23;
    s.height=1.7;
    s.weight=62;
    
    //2.擷取檔案路徑
    NSString *docPath=[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)lastObject];
    NSString *path=[docPath stringByAppendingPathComponent:@"person.yangyang"];
    NSLog(@"path=%@",path);
   
    //3.將自訂的對象儲存到檔案中
     [NSKeyedArchiver archiveRootObject:s toFile:path];

2.讀取資料過程:
複製代碼 代碼如下:

//1.擷取檔案路徑
    NSString *docPath=[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)lastObject];
    NSString *path=[docPath stringByAppendingPathComponent:@"person.yangyang"];
    //2.從檔案中讀取對象
    YYstudent *s=[NSKeyedUnarchiver unarchiveObjectWithFile:path];

3.遵守NSCoding協議,並實現該協議中的兩個方法。

4.如果是繼承,則子類一定要重寫那兩個方法。因為person的子類在存取的時候,會去子類中去找調用的方法,沒找到那麼它就去父類中找,所以最後儲存和讀取的時候新增加的屬性會被忽略。需要先調用父類的方法,先初始化父類的,再初始化子類的。

5.儲存資料的檔案的尾碼名可以隨意命名。

6.通過plist儲存的資料是直接顯示的,不安全。通過歸檔方法儲存的資料在檔案中開啟是亂碼的,更安全。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.