【发布时间】:2012-07-20 20:18:05
【问题描述】:
这段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 应用测试的上下文中。
【问题讨论】:
标签: java scala io playframework filenotfoundexception