美文网首页iOS学习
在项目中添加一个本地文件

在项目中添加一个本地文件

作者: mumumayday | 来源:发表于2017-08-09 17:33 被阅读2次

    例如:添加aa.txt,文件的内容为:lalala。
    使用NSBundle和NSURL分别去获取内容,代码如下:

        //  读取文件内容
        //  方法1:按照文件路径读取
        NSString *pathBundle = [[NSBundle mainBundle]pathForResource:@"aa" ofType:@"txt"];
        NSString *outstringbundle = [NSString stringWithContentsOfFile:pathBundle encoding:NSUTF8StringEncoding error:nil];
        
        //  方法2:按照URL读取
        NSURL *pathUrl = [[NSBundle mainBundle]URLForResource:@"aa" withExtension:@"txt" subdirectory:nil];
        NSString *outstringUrl = [NSString stringWithContentsOfURL:pathUrl encoding:NSUTF8StringEncoding error:nil];
        
        NSLog(@"%@\n////////\n%@",outstringbundle,outstringUrl);
    

    输出结果如下:

    1.png

    相关文章

      网友评论

        本文标题:在项目中添加一个本地文件

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