简体   繁体   中英

How to change JAR icon on mac?

I have a JAR file on my mac called Test.jar, and the file works perfectly fine when I click on it. All it does is it just opens a small window, and displays "Test", so it's a simple application (I am new to Java programming).

My question is how do I change the icon of the jar file to a different icon of my choice? I have yet to figure this out on my own, and I don't know what to do. Like I have already stated, I am using a mac, so MS Windows methods are probably different from what I have to do.

As the linked answer indicates, this is platform specific. OSX does allow you to easily package the java application as a native OSX app, though. See http://www.oracle.com/technetwork/articles/javase/javatomac3-137430.html

If you want to change the icon of the jar and/or an alias that points to it, you can use this method (works on Catalina):

  1. Right-click on the jar in Finder, click Get Info.
  2. Drag your icon to the top left of the info window (a plus sign will appear in the moving cursor).
  3. You can make an alias of the jar. This will show the same new icon.

Remarks:

  1. The icon must be a .icns file.
  2. Online converter to .icns: https://cloudconvert.com/png-to-icns .
  3. You have to repeat the procedure each time the jar is build.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM