如何从属性文件中的资源文件夹中读取文件

时间:2018-05-23 15:24:39

标签: java spring-mvc properties-file

我在资源文件夹src/test/resources/file.xml下有一个文件 另一个在src/test/resources/test.properties之下。我想在属性文件中设置一个属性以指向file.xml。我怎样才能做到这一点?

说我有财产

test.file = file.xml

我的java类按如下方式读取文件:

File cert = new File(fileName); // fileName is the value of test.file

然而,这不起作用。

1 个答案:

答案 0 :(得分:2)

您可以使用Properties类来读取和写入配置文件。