gpt4 book ai didi

ios - 从 .txt 文件读取/写入 iOS 7 objc

转载 作者:行者123 更新时间:2023-11-28 22:05:46 25 4
gpt4 key购买 nike

我有这个代码:

  NSString *studentList = _textIn.text;
NSString *path = [[self applicationDocumentsDirectory].path
stringByAppendingPathComponent:@"ClassOne.txt"];
[studentList writeToFile:path atomically:YES
encoding:NSUTF8StringEncoding error:nil];
NSLog(@"%@", studentList);
NSLog(@"students 1 saved");

我尝试写入电话系统上的文本文件。当我尝试读取该文件时:

NSError *error;
NSString *strFileContent = [NSString stringWithContentsOfFile:[[NSBundle mainBundle]
pathForResource: @"classOne" ofType: @"txt"] encoding:NSUTF8StringEncoding error:&error];
_textIn.text = strFileContent;

文本框变成空白。 NSLog 打印文本字段中的内容,但是当我稍后尝试加载它时,文本字段为空。如何让文本字段显示文件中的内容。

最佳答案

写作部分还可以。您正在尝试从应用程序主包而不是原始文件路径中读取文件。

关于ios - 从 .txt 文件读取/写入 iOS 7 objc,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24043665/

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