gpt4 book ai didi

objective-c - 使用 NSString :stringWithContentsOfFile? 读取文本文件

转载 作者:太空狗 更新时间:2023-10-30 03:21:44 26 4
gpt4 key购买 nike

用 NSString:stringWithContentsOfFile 读取文本文件?

NSString *txtFilePath = [[NSBundle mainBundle] pathForResource:@"\help" ofType:@"txt"];
NSString *txtFileContents = [NSString stringWithContentsOfFile:txtFilePath encoding:NSUTF8StringEncoding error:NULL];

NSLog(@"File: %@",txtFileContents);

结果是“null”。我怎么知道要指定什么路径?

谢谢

(我把文件放在“组和文件”下面...所以不确定我是否需要指定路径或只指定文件名。也许还有其他问题???

最佳答案

我认为您路径中的反斜杠令人困惑。试试这个:

NSString *txtFilePath = [[NSBundle mainBundle] pathForResource:@"/help" ofType:@"txt"];

此外,如评论中所述,您需要使用项目的构建阶段来复制“help.txt”文件。

关于objective-c - 使用 NSString :stringWithContentsOfFile? 读取文本文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6673267/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com