I Have problem with displaying my ICON IMAGE in Application JAR using Linux Ubuntu.
No problem in Windows or Mac OS.
No exception displayed, but i don't get the image in the Linux unity launcher bar.
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);
}