美文网首页
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 读取写入文件的封装

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