Set Icon for executable Jar file

Peter Penzov picture Peter Penzov · Nov 12, 2013 · Viewed 88.5k times · Source

I have a simple executable Jar file. How I can set icon for this file? In my case I use the standard Jar icon which I would like to change.

enter image description here

Answer

tokhi picture tokhi · Nov 12, 2013

you can use setIconImage:

frame.setIconImage(
new ImageIcon(getClass().getClassLoader().getResource("PATH/TO/YourImage.png"))
);

Update

If you want to change the coffee-cup then you may use tools like JSmooth to create executable java file and also change the jar file icon.

As you can see in the comments JSmooth can be used for windows operating systems. For Mac you can check the link here on how to change the icon.

For linux OS you can create a desktop launcher and choose an icon image for it.