应用程序启动时从桌面读取文本文件

发布于 2024-11-13 23:16:26 字数 414 浏览 2 评论 0原文

我需要在启动时在 NSTextView 中显示位于用户桌面上的文本文件的内容。我的代码无法正常工作——是否偏离了轨道?

NSError *err = nil;

NSString *filepath = @"~/Desktop/test.txt";

NSString *file = [NSString stringWithContentsOfFile:filepath 
                                           encoding:NSUTF8StringEncoding 
                                              error:&err];

if(!file) {

}

[textView setString:file];

I need to display the contents of a text file located on the user's desktop in an NSTextView at startup . My code is not working -- is it off track?

NSError *err = nil;

NSString *filepath = @"~/Desktop/test.txt";

NSString *file = [NSString stringWithContentsOfFile:filepath 
                                           encoding:NSUTF8StringEncoding 
                                              error:&err];

if(!file) {

}

[textView setString:file];

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

风和你 2024-11-20 23:16:26

@谢姆。对此感到抱歉。

我是这样修复的:

 NSError *err = nil;

 NSString *filepath = @"~/Desktop/test.txt";
 filepath = [filepath stringByExpandingTildeInPath];

 NSString *file = [NSString stringWithContentsOfFile:filepath 
                                       encoding:NSUTF8StringEncoding 
                                          error:&err];

 if(!file) {

}

[textView setString:file];

@Shem. Sorry about that.

I fixed it like this:

 NSError *err = nil;

 NSString *filepath = @"~/Desktop/test.txt";
 filepath = [filepath stringByExpandingTildeInPath];

 NSString *file = [NSString stringWithContentsOfFile:filepath 
                                       encoding:NSUTF8StringEncoding 
                                          error:&err];

 if(!file) {

}

[textView setString:file];
像你 2024-11-20 23:16:26

您的文本文件路径看起来不对...可能是: /Users/USERNAME/Desktop/test.txt 另外,请尝试 NSLog(@"Error: %@",[ err description]); 查看生成了哪些错误。

Your path to the text file looks off ... possibly: /Users/USERNAME/Desktop/test.txt Also, try NSLog(@"Error: %@",[err description]); to see what errors are generated.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文