我在使用Linux Ubuntu在Application JAR中显示我的ICON IMAGE时遇到问题。
在Windows或Mac OS中没问题。
没有显示异常,但我没有在Linux Unity启动栏中获取图像。
BufferedImage logo;
try {
logo = ImageIO.read((InputStream) Thread.currentThread()
.getContextClassLoader()
.getResourceAsStream("com/econorma/ui/resources/logo.png"));
getMainFrame().setIconImage(logo);
} catch (IOException e1) {
getMainFrame().setIconImage(null);
}