我使用的是Play 2.5,我用Java编写了一个代码,用于在/ app / public文件夹中创建文件,我在application.conf中对路径进行了参数化。之后我创建了一个dist文件,当我尝试从我的dist文件调用该方法时,该文件没有在/ public文件夹中生成。它无法检测路径吗?
file.create{
path = "public/"
}
编辑:Java代码 -
String filePath = conf.getString("file.create.path") + "Excel_file.xlsx";
FileOutputStream fos = new FileOutputStream(filePath);