stringWithContentsOfFile

stringWithContentsOfFile

我无法从Swift中的.text文件读取文本字符串。

我可以使用以下代码编写文件

var writeError: NSError?
let theFileToBeWritten = theStringWillBeSaved.writeToFile(pathToTheFile, atomically: true, encoding: NSUTF8StringEncoding, error: &writeError);

但是,每当我尝试使用“String.stringWithContentsOfFile”读取文件时,都会得到“'String.Type'没有名为'stringWithContentsOfFile'的成员。 stringWithContentsOfFile也不会出现在自动完成中。

我正在使用Xcode 6.1 GM Seed 2。

在许多教程中,我已经看到人们使用“stringWithContentsOfFile”从文件中读取文本并导致堆栈溢出,但是为什么它对我不起作用?

最佳答案

尝试这样的事情:

var error:NSError?
let string = String(contentsOfFile: "/usr/temp.txt", encoding:NSUTF8StringEncoding, error: &error)
if let theError = error {
   print("\(theError.localizedDescription)")
}

Swift 2.2:
if let string = try? String(contentsOfFile: "/usr/temp.txt") {
  // Do something with string
}

关于Swift 'String.Type'没有名为 'stringWithContentsOfFile'的成员,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26376698/

10-10 08:43