Linux下应用程序JAR的图标图像

时间:2014-05-22 10:39:20

标签: java linux swing icons

我在使用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);
    }

0 个答案:

没有答案