这段scala代码:
val file = new File(".")
assert(file.exists == true)
assert(file.getAbsolutePath.length > 0)
println(scala.io.Source.fromFile(file).getLines)
抛出:
FileNotFoundException: . (No such file or directory) (FileInputStream.java:120)
scala.io.Source.fromFile
打电话的时候。这怎么可能,我该如何解决?
PS:这是在 playframework 应用程序测试的上下文中。