0

我正在尝试编写一个属性文件并想添加一个类路径资源。

有没有办法将类路径添加到属性文件?

例子 :

我正在使用具有以下属性的 java 属性创建 example1.properties

key1 = value1
key2 = value2

我有另一个属性文件说 example2.properties 具有以下值

key3 = value3

当我存储 example1.properties 文件时,我需要包含 example2.propertis 文件。

注意:我不想包含值,而是想包含资源 example2.properties 的路径。

我需要的实际输出是:

例子1.properties

key1=value1
key2=value2
[classpath :/example2.properties]
4

0 回答 0