我已经尝试搜索,但仍然没有得到解决方案。当我导出到 jar 文件时,我的所有图像突然不再工作了。它们在 Eclipse 中运行良好,我确保它们在 jar 文件中。我尝试使用获取资源方法并使图像加载器类自动上升到目录树,但它仍然失败。这是我所做的:
public static Image load(String path)
{ String temp = path;
Image image = null;
try {
image = new ImageIcon(path).getImage();
}
catch ( Exception e )
{
try {
while (image == null )
{
image = new ImageIcon("../"+ path).getImage();
}
if ( path.equals("../../../../../../"+ temp))
{
while ( image ==null)
{
image = new ImageIcon("./"+ path).getImage();
}
}
}
catch ( Exception ae)
{
System.err.println("cannot locate image");
}}
return image;
}
我将发送它的路径如下:“doc/icon.png”
我已将所有图像放在 doc 文件夹中,结构是最终项目,里面有 doc 文件夹,然后是包含所有包的 src 文件夹。