码迷,mamicode.com
首页 > 移动开发 > 详细

IOS之文件的写入和读出

时间:2014-07-22 23:13:34      阅读:349      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   java   color   os   

mamicode.com,码迷
// 获取文件路径
   /**  1
     *  bundle是一个目录,其中包含应用程序的所有资源,通过mainBundle 得到这个目录后就可以获取resource下的资源
     */
    NSString *filePath = [[NSBundle mainBundle] pathForResource:@"ContactsInfo" ofType:nil];
    NSLog(@"%@", filePath);
    // 将文件中的内容取出来 存储成字符串 有了其中的内容就可以做一些相应的操作了
    NSString *string = [NSString stringWithContentsOfFile:filePath encoding:NSUTF8StringEncoding error:nil];
    NSLog(@"%@", string);
    
    //获取沙盒路径  得到这个路径就可以找到其中的问件
    NSString *sandboxPath = NSHomeDirectory();
    NSLog(@"%@", sandboxPath);
    /**
     *  沙盒中共有3个文件夹
     * 1 Documents 将程序中建立的或在程序中浏览到的文件数据保存在该目录下
     * 2 Library 存储程序的默认设置或其他状态信息
     * 3 tmp     存放临时文件
     * 4 应用程序包
     */
    // 获取Document路径
    // 方法 1
    NSString *documentFilePath = [sandboxPath stringByAppendingString:@"/Document"];
    NSLog(@"%@", documentFilePath);
    // 方法 2
    NSString *documentFilePath1 = [sandboxPath stringByAppendingPathComponent:@"Doucment"];
    NSLog(@"%@", documentFilePath1);
    // 方法 3
    NSString *documentFilePath2 = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
    NSLog(@"%@", documentFilePath2);
    
    // 这三种方法都能取得 Document
    
    // 将字符串写入指定文件 第二次写入会覆盖第一次写入的内容
    NSString *aFilePath = [documentFilePath2 stringByAppendingString:@"a.txt"];
    NSString *str = @"hello world";
    [str writeToFile:aFilePath atomically:YES encoding:NSUTF8StringEncoding error:nil];
    
    // 读出指定文件中的字符串
    NSString *str2 = [NSString stringWithContentsOfFile:aFilePath encoding:NSUTF8StringEncoding error:nil];
    NSLog(@"%@", str2);
    /**
     *  文件的写入和读出是有条件的 NSString NSArray NSDictionary NSData 这几种类型的数据才可以写入
     *
     *   NSArray NSDictionary NSData 的写入和读出方法大同小异
     */
mamicode.com,码迷

仅供参考 大神勿喷

IOS之文件的写入和读出,码迷,mamicode.com

IOS之文件的写入和读出

标签:style   blog   http   java   color   os   

原文地址:http://www.cnblogs.com/NatureZhang/p/3700060.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!