ビルド時から実行時にデータを渡すには、JARに保存されているファイルにデータを書き込む必要があります。
<jar destfile="printTarget.jar">
<fileset dir="${classes.dir}" />
<manifest>
<attribute name="Main-Class" value="com.example.Main" />
</manifest>
<!-- This is just a way to create a zip entry from inline text in the build
file without having to <echo> it to a real file on disk first -->
<mappedresources>
<mergemapper to="com/example/buildinfo.properties"/>
<string encoding="ISO-8859-1"># this is a generated file, do not edit
targetname=custom-build-1
</string>
</mappedresources>
</jar>
その後、メインメソッドで読み取ることができます
package com.example;
import java.io.*;
import java.util.Properties;
public class Main {
public static void main(String[] args) throws Exception {
Properties buildInfo = new Properties();
InputStream is = Main.class.getResourceAsStream("buildinfo.properties");
try {
buildInfo.load(is);
} finally {
is.close();
}
System.out.println("Build target was " +
buildInfo.getProperty("targetname", "<unknown>"));
}
}
これは印刷する必要があります
Build target was custom-build-1