1. 程式人生 > >IOS iPhone 開發中的檔案讀寫及資料儲存(一)

IOS iPhone 開發中的檔案讀寫及資料儲存(一)

 資料儲存無疑軟體開發重要課題。本文初學者介紹iphone開發常見檔案讀寫,當然,我也是初學者~

iOS的檔案儲存採用的是“沙箱機制”,也就是應用程式只能訪問自己的檔案目錄,每個應用程式的資料是獨立的,就像一個一個的沙箱一樣。這種管理方法windows原來塞班那種檔案管理方式適合移動平臺。這種方式安全,很大程度上避免了流氓軟體垃圾軟體盜竊資料。

檢視模擬器應用程式在mac上的儲存,就可以瞭解在iphone上檔案是如何組織的。

開啟目錄/Users/andy/Library/Application Support/iPhone Simulator/5.1/Applications就會看到模擬器上的程式資料夾,你會看到iphone每個應用程式都有自己的3個目錄(Document,Library,tmp)

Documents存放應用程式的資料。

Library目錄下面還有Preferences和Caches目錄,Preferences目錄存放應用程式的使用偏好,Caches目錄與Documents很相 是可以存放應用程式的資料。

tmp目錄供應用程式儲存臨時檔案。

注意,如果你的設定沒有設定為檢視隱藏目錄,你是看不到的,設定顯示隱藏檔案方法:在終端輸入命令:defaults write com.apple.finder AppleShowAllFiles -bool true然後重啟下finder。 

在應用程式中獲得自己的documents目錄:

NSArray * paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);NSString * documentDirectory = [paths objectAtIndex:0];

在上面的基礎上,獲得一個完整的檔案路徑和名字:

NSString * file = [documentDirectory stringByAppendingPathComponent:@"file1.txt"];

這就可以用file來建立,讀取,和寫入檔案。

iOS中資料儲存常見的有四種方式: 屬性列表、物件歸檔、ios嵌入式資料庫(SQLite3)和Core Data(蘋果提供的工具)

一,用屬性列表儲存資料:

該方法就是針對一些集合類呼叫writeToFile:atomically方法和initWithContentsOfFile 方法來寫入和讀取資料。

這些集合類包括:NSArray,NSMutableArray,NSDictionary,NSMutableDictionary,NSData,NSMutableData,NSString,NSMutableString,NSNumber,NSDate。在這裡輸入程式碼太麻煩了,無法識別回車換行,所以這個就不在這裡舉例了。

二,歸檔方法儲存自定義物件:

屬性列表方法簡單易用,但是使用有侷限性,就是無法儲存自定義的資料類。要解決這個問題,我們看歸檔方法。歸檔方法實際就是 用 NSKeyedArchiver 對 自定義類進行編解碼成 NSMutableData 後,再對NSMutableData實行序列化具體的編解碼是由NSCoder實現的。舉個例子就比較容易掌握。

例子中我們儲存4個值和一個名字字典。這些名字包括暱稱,qq網名,微博網名,省份證名字。自定義類如下:

標頭檔案:

#import <Foundation/Foundation.h> 

@interface BIDFourLines : NSObject

@property (copy, nonatomic) NSString *field1;

@property (copy, nonatomic) NSString *field2;

@property (copy, nonatomic) NSString *field3;

@property (copy, nonatomic) NSString *field4;

@property (copy, nonatomic) NSDictionary * names;

@end

實現檔案:

#import "BIDFourLines.h"

#define kField1Key @"Field1"

#define kField2Key @"Field2"

#define kField3Key @"Field3"

#define kField4Key @"Field4"

#define kFieldArrayKey @"FieldArray"

#pragma mark NSCoding

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

 [encoder encodeObject:field1 forKey:kField1Key];

[encoder encodeObject:field2 forKey:kField2Key];

[encoder encodeObject:field3 forKey:kField3Key];

[encoder encodeObject:field4 forKey:kField4Key];

[encoder encodeObject:names forKey:kFieldArrayKey];

}

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

if (self = [super init]) {

field1 = [decoder decodeObjectForKey:kField1Key];

field2 = [decoder decodeObjectForKey:kField2Key];

field3 = [decoder decodeObjectForKey:kField3Key];

field4 = [decoder decodeObjectForKey:kField4Key];

names = [decoder decodeObjectForKey:kFieldArrayKey];

}

return self;

}

- (id)copyWithZone:(NSZone *)zone {

BIDFourLines *copy = [[[self class] allocWithZone: zone] init];

copy.field1 = [self.field1 copyWithZone:zone];

copy.field2 = [self.field2 copyWithZone:zone];

copy.field3 = [self.field3 copyWithZone:zone];

copy.field4 = [self.field4 copyWithZone:zone];

copy.names = [self.names copyWithZone:zone];

return copy;

}

@end

儲存檔案程式碼:

- (void) saveTofile{

BIDFourLines *fourLines = [[BIDFourLines alloc] init];

fourLines.field1 = field1.text;

fourLines.field2 = field2.text;

fourLines.field3 = field3.text;

fourLines.field4 = field4.text;

fourLines.names = [NSDictionary dictionaryWithObjectsAndKeys:@"andy",@"nickName",@"王勃",@"idName",@"田鼠",@"qqName",@"大力哥",@"weiboName",nil ]; NSMutableData *data = [[NSMutableData alloc] init];

NSKeyedArchiver *archiver = [[NSKeyedArchiver alloc] initForWritingWithMutableData:data];

[archiver encodeObject:fourLines forKey:kDataKey];

[archiver finishEncoding];

[data writeToFile:[self dataFilePath] atomically:YES];

}

獲取檔名函式:

- (NSString *)dataFilePath {

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

NSString *documentsDirectory = [paths objectAtIndex:0];

return [documentsDirectory stringByAppendingPathComponent:@"archive"];

}

- (void) loadFileData{

NSString *filePath = [self dataFilePath];

if ([[NSFileManager defaultManager] fileExistsAtPath:filePath]) {

NSData *data = [[NSMutableData alloc] initWithContentsOfFile:[self dataFilePath]];

NSKeyedUnarchiver *unarchiver = [[NSKeyedUnarchiver alloc] initForReadingWithData:data];

BIDFourLines *fourLines = [unarchiver decodeObjectForKey:kDataKey];

[unarchiver finishDecoding];

field1.text = fourLines.field1;

field2.text = fourLines.field2;

field3.text = fourLines.field3;

field4.text = fourLines.field4;

NSDictionary * names = fourLines.names;

if(names) {

NSArray * array = [names allKeys];

  for (NSString * value in array) {

     NSLog(@"%@ is %@",value,[names objectForKey:value]);

   }  

  }

 }

}