Ok so I\'ve been researching this one quiet a bit. I am fairly new to java but thought that this one would be easy. Ive tried just about every way that has been answered on
This works pretty fine for me. Just add this after you've created your JFrame.
try { Image image = new ImageIcon("/icons/image.jpg").getImage(); frame.setIconImage(image); }catch(Exception e){ System.out.println("Application icon not found"); }