4

我使用一些图像图标开发了一个 Swing 应用程序。应用程序 jar 文件在 Windows 中按预期工作,但相同的 jar 文件在 Ubuntu 12.04 操作系统上未显示框架的图像图标。

我的示例代码:

 ImageIcon ImageIcon = new ImageIcon(getClass().getResource("/images/logo.png"));
 Image Image = ImageIcon.getImage();
 frame.setIconImage(Image);

注意:带有按钮的图像按预期显示,问题仅在于加载帧图像。

有人可以建议我如何解决这个问题吗?

4

1 回答 1

1

将您的 JFrame 外观设置为装饰,

JFrame.setDefaultLookAndFeelDecorated(true);
于 2012-12-20T20:20:54.180 回答