我正在尝试加载具有以下格式的 .txt 文件
人 职位 数据 平均 目标
人 1 董事 37 45 80
人 2 助理 23 56 34
人 3 CEO 34 45 67
有五列,第一行是标题。下面是我在 viewDidLoad 中使用的代码:
override func viewDidLoad() {
super.viewDidLoad()
// load txt file from dropbox
let url = URL(string: "https://www.dropbox.com/s/pr0ldvdeab48mpp/prueba.txt?dl=0")
let task = URLSession.shared.downloadTask(with: url!) {(urlresponse, response, error) in
guard let originalURL = urlresponse else { return }
do {
// get path to directory
let path = try FileManager.default.url(for: .documentDirectory, in: .userDomainMask, appropriateFor: nil, create: false)
// giving name to file
let newUrl = path.appendingPathComponent("myTextFile")
// move file from old to new url
try FileManager.default.moveItem(at: originalURL, to: newUrl)
} catch {
print(error.localizedDescription)
return
}
}
task.resume()
//reading the file
let path = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).first
do {
let fileUrls = try FileManager.default.contentsOfDirectory(at: path!, includingPropertiesForKeys: nil)
//read the text
let textContent = try String(contentsOf: fileUrls[0], encoding: .utf8)
print(textContent)
} catch {
print("ERROR")
}
}
但是,我得到下面的错误就行了
let textContent = try String(contentsOf: fileUrls[0], encoding: .utf8)
线程 1:致命错误:索引超出范围
我的目标是能够在需要时单独读取文件并访问每列/行的元素,但无法确定问题的根源。感谢任何帮助。
注意:如果有帮助,我可以灵活地将文件加载为 .csv 或其他更容易的格式。