给定用 maven 编译的 hello.jar,我想访问位于文件夹/file.file 下的资源。但是我不知道如何获取我所在的当前 JAR 的 URL。会
file://./folder/file.file
正常工作,或者,
jar:file://./!hello.jar/folder/file.file
还是有更简单的方法来做到这一点?
(抱歉这个愚蠢的问题,我是 Maven 新手。)
这对我有用:
URL url = this.getClass().getProtectionDomain().getCodeSource().getLocation();
String jarPath = URLDecoder.decode(url.getFile(), "UTF-8");
jarPath
然后包含具有该代码的类所在的 jar 文件的完整路径。
注意通过 URLDecoder 的“绕行”,否则如果 jar 文件位于包含空格的目录中,您将获得包含 %20 的文件名。
您可以使用以下方法找到 jar 的资源:
String resRelativePath = "folder/thing.jpg";
URL resUrl = this.getClass().getResource(resRelativePath);