gpt4 book ai didi

swift - 在 Swift 中读取文本文件

转载 作者:搜寻专家 更新时间:2023-10-31 22:16:50 25 4
gpt4 key购买 nike

我正在尝试从程序中读取一个文本文件,它是

 var name = String.stringWithContentsOfFile("test.txt", encoding: NSUTF8StringEncoding, error:nil)

(其中text.txt在项目文件夹下)

我也试过:

 var name = String.stringWithContentsOfFile("/Users/Michael/Desktop/test.txt", encoding: NSUTF8StringEncoding, error:nil)

(目录)

而且他们都向我返回了一个零值。我检查了文件并确保它是一个带有 UTF-8 代码的 txt 文件。有人可以帮助我吗?

最佳答案

您遇到了这个问题,因为您已将文件路径指定为字符串,而它应该是路径对象。请尝试以下示例:

let path = NSBundle.mainBundle().pathForResource("fileName", ofType: "txt")
var data = String.stringWithContentsOfFile(path, encoding: NSUTF8StringEncoding, error: nil)

此示例假定相关文件位于您的应用程序包中。

关于swift - 在 Swift 中读取文本文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25926536/

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