In my JFrame i have the default coffee icon. I want to remove it. But when i do setIconImage(null) it does\'t work. Can anyone tell me the solution as to how to completely r
You could just use gimp or photoshop or even paint and create a 1x1px, transparent image, export it (.png or .jpg, doesnt matter?). Then apply it:
ImageIcon frameIcon = new ImageIcon("files\yourfile.png"); frame.setIconImage(frameIcon.getImage());
Should be fine.