3

我有一个带有 main-class 的 jar,可以像这样执行:java -jar test.jar

在罐子里我有类似的东西

public static void main(String[] args) throws IOException {
    InputStream is = ClassLoader.getSystemClassLoader().getResourceAsStream("config.properties");
    Properties prop = new Properties();
    prop.load(is);
    //then I wanna fetch all the properties in the config.properties file
}

我同时运行:

  1. java -jar test.jar

  2. java -jar test.jar -cp /tmp(config.properties 所在的位置)

  3. java -jar test.jar -cp /tmp/config.properties (显然它不起作用,但让你知道我想在这里实现什么)

代码不起作用,尽管我将 config.properties 文件的路径放在我的 $PATH 和 $CLASSPATH 下,但所有三个都抛出 NPE。

关键是,从长远来看,我会将配置文件放在 ${my-config-path} 中,并正确读取/处理它。但暂时我只想要一些快速而肮脏的东西。

  1. 我不想在我的 jar 中包含属性文件。
  2. 我想将它保存在外部类路径或路径中,当我执行 jar 时,它会毫无问题地找到它。
4

2 回答 2

5

一旦指定-jar了所有类路径选项,就会被忽略。

相反,指定默认配置位置(如在用户的主目录中)并允许在命令行上覆盖。

有多种命令行解析选项,最简单的用选项信息注释类属性,例如,长短选项名称、用法等。

或者使用一个-D选项并检索适当的系统属性。

另一个选择是PreferencesAPI。

于 2012-04-12T17:03:55.783 回答
0

一个示例

@Echo off
java -cp "C:/***/***" -Dlog4j.configuration=file:C:/***/***/log4j.properties com.****.****.MainMethod %1 %2 ...
pause
于 2018-10-10T22:39:45.597 回答