Java - dist文件夹

时间:2018-03-06 01:03:17

标签: java properties properties-file

这是我的src包:

/src/PropertyAccess.java

/src/config.properties

config.properties被添加到类路径中并位于Project.jar中。

但我希望它在我的dist文件夹中,因此,每当我的java应用程序需要分发时,用户就可以配置自己的属性。

我需要在dist文件夹中使用此结构: /dist/Project.jar /dist/config/config.properties。

我的jar需要从dist / config.properties文件中加载属性。

如何做到这一点?

1 个答案:

答案 0 :(得分:0)

build.xml内编辑“ -post-compile”目标,如下所示:

<target name="-post-compile">
    <copy file="textfile.txt" todir="${dist.dir}"/>        
</target>

您可以放置​​任何.properties等文件而不是.txt