0

我的小程序不想在浏览器中打开。我认为这一切都是因为图形。

我像这样加载它:

icon = new ImageIcon(getClass().getResource("logo.png"));

并像这样使用:

logo = new JLabel(icon);

没有图形,一切都很好。

4

1 回答 1

1

使用类加载器查找捆绑在jar文件中的图像。

ClassLoader classLoader = this.getClass().getClassLoader();

URL imageURL = classLoader.getResource("images/icon.logo");
JLabel logo = new JLabel(new ImageIcon(imageURL));

也可以看看:


更新

 +Project
 |
 |   
 +-src
 |  |
 |  |   
 |  +path
 |  |
 |  |-TargetClass.java
 |  ...
 |
 +-resources
 |  |
 |  |
 |  +-images       
 |  |    |
 |  ...  |-icon.logo
 ...     ...  
于 2013-10-29T23:17:40.800 回答