美文网首页
SangBox 读取写入文件的封装

SangBox 读取写入文件的封装

作者: LeoCao | 来源:发表于2016-07-04 15:45 被阅读0次

@interface SandBoxPaths : NSObject

// 主路径

+ (NSString *) homePath;

// document 路径

+ (NSString *) documentPath;

// library 路径

+ (NSString *) libraryPath;

// caches 路径

+ (NSString *) cachesPath;

// tmp 路径

+ (NSString *) tmpPath;

// 从 bundle 下获取资源文件

+ (id) sourceFromBundleWithName:(NSString *)name type:(NSString *)type;

// 读取文件

+(id)readDataWithPath:(NSString *)path dataType:(NSString *)dataType;

// 写入文件

+(void) dataWriteToFileWithName:(NSString *)name type:(NSString *)type data:(id)data;

@end


@implementation SandBoxPaths

// 得到沙盒主路径

+ (NSString *) homePath{

return NSHomeDirectory();

}

// 得到 documents 路径

+ (NSString *) documentPath{

return NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)[0];

}

// 得到 library 路径

+ (NSString *) libraryPath{

return NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES)[0];

}

// 得到 caches 路径

+ (NSString *) cachesPath{

return NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES)[0];

}

// 得到 tmp 路径

+ (NSString *) tmpPath{

return  NSTemporaryDirectory();

}

// 获取 bundle 下的资源文件

+ (id)sourceFromBundleWithName:(NSString *)name type:(NSString *)type{

return [[NSBundle mainBundle]pathForResource:name ofType:type];

}

// 写入文件

+(void) dataWriteToFileWithName:(NSString *)name type:(NSString *)type data:(id)data{

if ([data isKindOfClass:[NSString class]]) {

// 说明要写入的数据类型为字符串类型

// 1、先创建要写入的文件路径  stringByAppendingPathComponent:专门用来拼接文件路径,在拼接的时候,不用添加“/”

NSString *docuPath = [[SandBoxPaths documentPath] stringByAppendingPathComponent:[NSString stringWithFormat:@"%@.%@",name,type]];

// 2、将数据写入到创建好的路径下

// file:要保存数据的文件路径

// atomically:原子性。 YES:保持文件的原子性,在文件的写入过程中,系统会创建一个临时文件,当文件整个写入完成之后,会将临时文件的数据转移到咋们要存储数据的路径下。NO,直接将数据写入到存储的路径下

// encoding 编码格式不匹配

// error 错误信息

BOOL isWriteSuccess = [data writeToFile:docuPath atomically:YES encoding:NSUTF8StringEncoding error:nil];

if (isWriteSuccess) {

NSLog(@"%@文件写入成功",name);

}else{

NSLog(@"%@文件写入失败",name);

}

// 写入的文件类型非字符串类型  如果要写入的数据为数组或者字典,那么数组或者字典的元素类型也必须是简单数据类型

}else{

NSString *pathString = [[SandBoxPaths documentPath]stringByAppendingPathComponent:[NSString stringWithFormat:@"%@.%@",name,type]];

//        BOOL isWriteSuccess = [data writeToFile:pathString options:NSDataWritingAtomic error:nil];

BOOL isWriteSuccess =  [data writeToFile:pathString atomically:YES];

if (isWriteSuccess) {

NSLog(@"%@文件写入成功",name);

}else{

NSLog(@"%@写入失败",name);

}

}

}

// 从文件路径下读取数据<封装>

+(id)readDataWithPath:(NSString *)path dataType:(NSString *)dataType{

// 从路径下读取数据

if ([dataType isEqualToString:@"NSString"]) {

// NSClassFromeString 将字符串类型转化为 类名

// NSStringFromClass 将类名转化为字符串

// 字符串类型的读取

return [[NSClassFromString(dataType)alloc]initWithContentsOfFile:path encoding:NSUTF8StringEncoding error:nil];

}else{

// 非字符串类型的读取

return [[NSClassFromString(dataType)alloc]initWithContentsOfFile:path];

}

}

@end

相关文章

  • SangBox 读取写入文件的封装

    @interface SandBoxPaths : NSObject// 主路径+ (NSString *) ho...

  • 文件操作作业

    封装文件的读写操作,写操作,写入需要写入文件的内容和地址;读操作,写入需要读取的文件地址。HomeWork.py

  • day10作业

    封装文件的读写操作,写操作,写入需要写入文件的内容和地址;读操作,写入需要读取的文件地址。 另一个.py文件

  • fs文件系统操作

    基础写入文件 简单写入文件 流式文件写入 简单文件读取 流式文件读取 流式文件拷贝(读取 + 写入) 复制文件 f...

  • python 文件操作

    fp=open("文件路径","方式") 文件读取 文件写入 文件关闭 文件读取写入方式

  • 经验技巧 - 收藏集 - 掘金

    node 核心模块 --fs - 前端 - 掘金fs模块是文件操作的封装,它提供了文件读取、写入、更名、删除、遍历...

  • txt读写

    文件打开 读文件 读取字符串 按行读取整个文件 写文件 字符串写入txt 列表写入文件 双层列表写入文件 数组写入文件

  • java操作文件

    优雅读取文件 优雅的写入文件 读取大文件

  • nodeJS读取json文件并写入txt或redis中

    【1:读取json写入txt文件】json文件book.json js文件 【2:读取json写入redis文件/...

  • Advanced:DCloud{一、本地存储文件}

    写入文件 读取文件

网友评论

      本文标题:SangBox 读取写入文件的封装

      本文链接:https://www.haomeiwen.com/subject/qnpcjttx.html