gpt4 book ai didi

iphone - ios 使用 stringWithContentsOfFile 找不到 txt 文件

转载 作者:可可西里 更新时间:2023-11-01 05:01:43 25 4
gpt4 key购买 nike

我有一个文本文件 thetext.txt。这是在我的项目中,并在构建时复制到build设置中。就像我的 GL 着色器和纹理一样(工作正常。)

NSError *errorReading;
NSArray *linesOfText = [[NSString stringWithContentsOfFile:@"thetext.txt"
encoding:NSUTF8StringEncoding
error:&errorReading]
componentsSeparatedByString:@"\n"];

NSLog(@"Reading error %@",errorReading);

它向控制台打印以下内容。

Reading error  Error Domain=NSCocoaErrorDomain Code=260 "The operation couldn’t be completed. (Cocoa error 260.)" UserInfo=0x896fff0 {NSFilePath=thetext.txt, NSUnderlyingError=0x896ff60 "The operation couldn’t be completed. No such file or directory"}

我是不是漏了什么?

最佳答案

这会失败,因为您传递的是文件名而不是文件路径。尝试这样的事情

NSString* filePath = [[NSBundle mainBundle] pathForResource:@"thetext" ofType:@"txt"];
NSError *errorReading;
NSArray *linesOfText = [[NSString stringWithContentsOfFile:filePath
encoding:NSUTF8StringEncoding
error:&errorReading]
componentsSeparatedByString:@"\n"];
NSLog(@"Reading error %@",errorReading);

希望没有错误!

关于iphone - ios 使用 stringWithContentsOfFile 找不到 txt 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17009401/

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