Remove default JFrame icon

前端 未结 4 1257
慢半拍i
慢半拍i 2020-12-19 07:41

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

4条回答
  •  伪装坚强ぢ
    2020-12-19 07:51

    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.

提交回复
热议问题