gpt4 book ai didi

java - 获取程序正在运行的 .jar 中文件的 URL

转载 作者:行者123 更新时间:2023-12-02 01:19:01 24 4
gpt4 key购买 nike

给定用maven编译的hello.jar,我想访问位于folder/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 的文件名。

关于java - 获取程序正在运行的 .jar 中文件的 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16240353/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com