Danny King
Danny King

Reputation: 1991

Convert .jar to an OSX executable?

I made a Java application which I would like to distribute on Windows, OSX and Linux without distributing a jar file. I used the great Windows exe wrapper http://launch4j.sourceforge.net/ to create an .exe file complete with my icon that won't scare Windows users.

Are there similar wrappers that I can use for OSX/Unix? An important consideration is that I would like to have my own icon on the executable (especially for mac users).

Thanks!

Upvotes: 38

Views: 55773

Answers (5)

Kiran
Kiran

Reputation: 687

Github user Jorl17 made an excellent Python script called jar2app that does this with one simple command. It even lets you customize the app icon.

https://github.com/Jorl17/jar2app

Just install it, follow the instructions, and you get the .app file.

Upvotes: 4

Marco
Marco

Reputation: 444

JarBundler is obsolete, but there is a (better) official replacement: the javapackager tool.

For OSX, A simple, well explained, step by step tutorial on how to create a DMG from java is here: http://centerkey.com/mac/java/ . For other platforms, you just need to modify the example by using the proper switches in javapackager.

Upvotes: 9

Michael Aaron Safyan
Michael Aaron Safyan

Reputation: 95499

Yes, on Mac OS X there is a program called Jar Bundler that is installed when you install the free (assuming that you already own a copy of Mac OS X) Xcode Developer Tools that allows you to bundle a JAR file inside a native Mac OS X "*.app" application bundle with a nice and shiny icon just like other apps.

Update
The JAR bundler doesn't exist on later versions of OS X. As a workaround, you can manually create an OS X project that invokes Java. Or, there are a variety of build system extensions that do a similar thing; for example, the gradle-macappbundle plugin for Gradle will create such a wrapper app.

Upvotes: 31

Emmanuel Bourg
Emmanuel Bourg

Reputation: 10988

You can also package your application with the JarBundler Ant task:

http://informagen.com/JarBundler

<jarbundler dir="release"
        name="MyApp"
        mainclass="org.foo.myapp.Main" 
        jar="myapp.jar" />

Upvotes: 3

Thilo
Thilo

Reputation: 262504

If you do not have a Mac to build this on (or want to integrate it into an existing build chain), you might want to have a look at the OS X Application Bundle Plugin for Maven.

This will (if run on Linux or Windows) create a zip that will unzip as a proper Mac application. If you run Maven on a Mac, it can also make a DMG.

Upvotes: 5

Related Questions