Java:获取主应用程序的资源路径而不是 jar 的

这里已经讨论了很多关于获取资源的问题。如果已经有解决方案 - 请指点我,因为我找不到。


我有一个使用多个罐子的程序。在其中一个罐子中,我在 main/resources 文件夹下添加了一个属性文件。


为了读取它,我已经将以下方法添加到 jar 项目中:


public void loadAppPropertiesFile() {


    try {

        Properties prop = new Properties();

        ClassLoader loader = Thread.currentThread().getContextClassLoader();

        String resourcePath = this.getClass().getClassLoader().getResource("").getPath();

        InputStream stream = loader.getResourceAsStream(resourcePath +  "\\entities.properties");

        prop.load(stream);

        String default_ssl = prop.getProperty("default_ssl");

    }catch (Exception e){


    }

}

问题(?)是 resourcePath 给了我一个目标\测试类的路径,但是在调用应用程序目录下,尽管加载代码存在于 jar 中!


这是 jar 内容:

http://img2.mukewang.com/647c517d0001832203330156.jpg

jar 通过 maven 依赖添加到主项目中。

如何克服这种状态并读取 jar 资源文件?

谢谢!


慕莱坞森
浏览 112回答 2
2回答

大话西游666

我建议使用用于加载类的类加载器,而不是上下文类加载器。然后,您有两种选择来获取 jar 文件根目录下的资源:使用Class.getResourceAsStream,传入绝对路径(前导/)使用ClassLoader.getResourceAsStream,传入相对路径(仅"entities.properties")所以要么:InputStream stream = getClass().getResourceAsStream("/entities.properties"); InputStream stream = getClass().getClassLoader().getResourceAsStream("entities.properties");就我个人而言,我会使用第一个选项,因为它更简洁明了。

陪伴而非守候

你能试试这个吗:InputStream stream = getClass().getClassLoader().getResourceAsStream("entities.properties")
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java