获取无法在Play Framework中找到文件异常

Getting cannot find file exception in Play Framework

我的应用程序根目录中有一个名为 product.csv 的文件。我想从文件中读取。但我收到文件未找到异常。这是我写的代码。

val lines = scala.io.Source.fromFile("/product.csv").mkString
println(lines)

我做错了什么?

我正在使用 Windows OS.

您需要使用相对文件路径 "product.csv" 而不是 "/product.csv",后者会查看您驱动器的根目录。