通常在做项目时,初始化应用时,可能会把某些数据打包进程序中,减少用户流量消耗,或者缩短网络请求时间。
一、数据打包进工程项目中
1、获取路径:需要传送文件的名称 (以plist文件为例)
- (NSString *)getLocaFilePath:(NSString *)name {
NSArray *array = [name componentsSeparatedByString:@"."];
NSString *resourcesPath = [NSString string];
if ([array count] > 1) {
resourcesPath = [[NSBundle mainBundle] pathForResource:[array objectAtIndex:0] ofType:[array objectAtIndex:1]];
}
return resourcesPath;
}
2、加载数据
NSDictionary* loadDic = [NSDictionary dictionary];
loadDic = [NSDictionary dictionaryWithContentsOfFile:[self getLocalFullFileName:CodeListFileName]];
二、直接从沙盒中读取文件数据(数据文件保存在沙盒中)
1、读书文件路径
NSArray *cachesPaths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
NSString *cachesDir = [cachesPaths objectAtIndex:0];
return [cachesDir stringByAppendingFormat:@"/%@", name]; // name 文件的名称
2、加载数据一样的
3、生成文件
NSString* filename;
filename = [self getFullFileName:CodeListFileName];
NSFileManager* file_manager = [NSFileManager defaultManager];
if (![file_manager fileExistsAtPath:filename])
[file_manager createFileAtPath:filename contents:nil attributes:nil];
[saveDic writeToFile:filename atomically:YES];
[saveDic release];
总结:一般是先将文件直接打包进沙盒中,然后从沙盒中移到项目中,over了