Jlink打包的应用找不到属性文件

Application packaged with Jlink cannot find properties file

我正在将一个应用程序从 Oracle Java 8 迁移到 openJDK11 + openJFX11。 在 Java 8 版本中,我使用以下代码加载了一个属性文件(CryoStats 是包含代码的 class):

try {
    jarLocation = CryoStats.class.getProtectionDomain().getCodeSource().getLocation().toURI().getPath();
    confLocation = jarLocation.substring(0, jarLocation.lastIndexOf("/")) + "/config/";
try (FileInputStream input = new FileInputStream(confLocation + "CryoStats.properties");) {
            properties.load(input);
            HORUS_HOST = properties.getProperty("HORUS_HOST");
            HORUS_USERNAME = properties.getProperty("HORUS_USERNAME");
            HORUS_PASSWORD = properties.getProperty("HORUS_PASSWORD");
            CONNECTION_TIMEOUT = Integer.parseInt(properties.getProperty("CONNECTION_TIMEOUT"));
            SOCKET_TIMEOUT = Integer.parseInt(properties.getProperty("SOCKET_TIMEOUT"));
            System.out.println("CryoStats.properties loaded.");
        } catch (FileNotFoundException ex) {
            System.out.println("Error loading properties file");
            System.out.println(ex.getMessage());
        } catch (IOException ex) {
            System.out.println("Error loading properties file");
            System.out.println(ex.getMessage());
        }
} catch (URISyntaxException ex) {
        System.out.println(ex.getMessage());
    }

在我的 Netbeans 构建配置中,我有一个任务将 "config" 文件夹复制到 "dist" 文件夹,因此包括:我的 jar 文件、一个 "lib" 文件夹、一个"config" 文件夹。 此代码在 Netbeans 和 运行 时间都有效。

我需要让用户能够编辑属性文件,所以我需要将它保存在 jar 之外。

我现在已将代码迁移到 Eclipse 项目,并针对 openJDK11 和 openJFX11 进行编译。如果我 运行 Eclipse 中的项目,它会加载属性文件。但是,如果我使用 jlink 创建我的模块的 运行 次图像,它找不到属性文件并且 jarLocation 的值为:

jarLocation = /cryostats

据我所知,发生这种情况是因为在完全模块化的 Java 应用程序中没有 class 路径的概念,因此作为解决方法,我使用了

confLocation = System.getProperty("user.dir") + "/config/";

并且我已经在执行jlink后手动将"config"文件夹复制到"bin"文件夹中。这在我启动应用程序时有效,但在 Eclipse 中不起作用,这是一个粗糙而丑陋的解决方案。

有没有办法让用户在 jlink 生成的 运行 时间图像中访问属性文件,同时由 Eclipse 访问?

假设 类 来自平台文件系统中的物理文件 .jar 文件是不正确的。 (另外,getCodeSource() can return null)。

Windows、OS X 和 Linux 都有存储用户配置文件的标准位置。参见 。过度简化 link 中的信息:

  • Windows: System.getProperty("user.home") + "\AppData\Roaming\CryoStats"
  • OS X: System.getProperty("user.home") + "/Library/Application Support/CryoStats"
  • Linux: System.getProperty("user.home") + "/.config/CryoStats"

(不要直接使用这些路径;实际上比这更复杂。阅读 link 以获得完整解释。)

永远不要使用System.getProperty("user.dir")——那是当前目录,它可以是任何东西,包括系统的根目录。另一方面,user.home系统属性指向一个稳定的位置,即用户的主目录。

我对应用程序配置所做的是:我将 default 配置包含在程序中,作为只读资源。当程序退出时,它会将可能由用户修改的配置保存到系统的标准配置位置。