我正在尝试将NSString
我的文件的内容加载到names.txt
项目目录中的 . 为此,我有以下代码:
NSError *error = nil;
NSString *names = [[NSString alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"names" ofType:@"txt"] encoding:NSASCIIStringEncoding error:&error];
if (error != nil) {
[NSException raise:@"Error reading file :" format:@"%@",error];
}
我得到了*** Terminating app due to uncaught exception 'Error reading file :', reason: 'Error Domain=NSCocoaErrorDomain Code=258 "The file name is invalid."'
。我找不到任何其他类似的案例。这段代码有什么问题?