如何在 iPhone 中读取文件?
我正在尝试从我的文档目录中以 NSString 的形式读取 .txt 文件。知道如何将文件读入 NSString 吗?
谢谢...
I am trying to read a .txt file from my documents directory in the form of NSString. Any idea how to read the file into NSString?
Thank you...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
使用 NSString 的 stringWithContentsOfFile: 方法。
Use NSString's stringWithContentsOfFile: method.
无论如何,这对我有用
,谢谢大家..
This worked for me
Anyway, thank you all..
希望这就是您想要的:
我通常在应用程序文档目录中查找它。
Hopefully this is what you're after :
I usually have it looking in the Applications Document directory.
希望这会有所帮助...
编码快乐...
Hope this helps...
hAPPY cODING...
我认为这是从 DocumentDirectory 读取 .txt 文件的最佳方法。
我希望这对你有用!
I think this is the best way to read .txt file from DocumentDirectory.
I hope this will work for you!!