gpt4 book ai didi

java - 从网络启动时列出可运行 jar 中的资源失败

转载 作者:太空宇宙 更新时间:2023-11-04 09:33:08 24 4
gpt4 key购买 nike

我编写了一个java swing应用程序,它必须从资源中找到它的图标。因此我想在可运行的 jar 文件的特定文件夹中找到任何 png。我之前不知道里面会有什么名字。

要在资源文件夹中查找 png,我使用以下代码:

private List<String> getResourceFolderFileNames(String folder) {
List<String> names = new ArrayList<>();
File jarFile = new File(getClass().getProtectionDomain().getCodeSource().getLocation().getPath());
System.out.println("Folder to search in: " + folder);
try {
if (jarFile.isFile()) {
System.out.println("This is a jar file dir");
JarFile file = new JarFile(jarFile);
Enumeration<JarEntry> entries = file.entries();
List<JarEntry> jarEntries = new ArrayList<>();
while (entries.hasMoreElements()) {
jarEntries.add(entries.nextElement());
}
System.out.println("Number of entries: " + jarEntries.size());
for (JarEntry e: jarEntries
) {
String name = e.getName();
if (name.matches(".*/" + folder + "/[0-9]+\\.png")) {
name = name.split("/")[2];
System.out.println("Added name: " + name);
names.add(name);
}
}
} else {
System.out.println("This is not a jar file");
ClassLoader loader = Thread.currentThread().getContextClassLoader();
URL url = loader.getResource("resources/" + folder);
String path = url.getPath();
for (File f: new File(path).listFiles()
) {
names.add(f.getName());
}
}
} catch (Exception e) {
System.out.println(e.getMessage() + "catch in get Resource folder file names");
}
return names;
}

代码所需的行为是,它将返回一个字符串列表,其中都是 *****.png 文件名。

else 部分实际上还没有工作,但程序永远不会到达它。这部分适用于您在 IDE 中开始搜索时,因为它在那里的工作方式似乎有所不同(指出了一些其他问题)。看起来它确实在“jarFile.isFile()”上失败了。

错误:

当我在 Windows 或 Mac 上启动导出的可运行 jar 文件时,它工作得很好。它确实做了它应该做的事情。如果我从网络文件夹启动相同的可运行 jar 文件,它找不到 png 文件。

项目结构

这是我的图标所在的位置

--src/
--resources/
--iconfolder1
--iconfolder2

如果现在需要更多信息,请告诉我,我将尽力帮助您。非常感谢。

编辑1:

现在它可以在 IDE 中再次运行,但仍然无法在网络上运行。

br亚历克斯

最佳答案

代码本身实际上没有任何问题。

发生的情况是,getLocation 返回一个 URL,因此对于 getPath,这是 URL 编码的。因此,现在当您的路径中有空格时,它们将使用 %20 进行编码。 File 的构造函数不会对此进行解码,因此无法读取路径。

File jarFile = new File(URLDecoder.decode(getClass().getProtectionDomain().getCodeSource().getLocation().getPath(), "UTF-8"));

因此,在创建新文件之前解码字符串将按预期执行。

关于java - 从网络启动时列出可运行 jar 中的资源失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56831785/

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