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

例如:添加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张图片
1.png

你可能感兴趣的:(在项目中添加一个本地文件)