我想通過scala命令行讀取文本文件。 代碼編譯正確,但由於文件未找到錯誤而導致執行失敗。在scala命令行中讀取文本文件行
import scala.io.Source
object Mainclass extends App {
val filename = "filo.txt"
for(line <- Source.fromFile(filename).getLines) {
println(line)
}
}
這是錯誤:
scala Main.scala:
java.io.FileNotFoundException: filo.txt (The system cannot find the file specified)
你的代碼對我來說沒有錯誤(我創建了'filo.txt'文件之後)。 – jwvh