I make an installer with izpack. Its in .jar file. I want to make it in .exe file in order to distribute it. How can I do it in an easy way?
|
Here is a short description of 4 different solutions. |
|||||||||||||
|
|
Andrew always likes to promote Java Web Start technology from the start :) It is a nice tech. But, you also need to learn the technical parts first before you can start tinkering with it. Otherwise, you are left with the old-style EXE distribution model as follows... I am not familiar with Izpack anyway. But, there are similar separate tools to achieve the combined result as to what izPack can do. My favorite EXE creation and installer tools are Launch4J + InnoSetup + Ant task running from Eclipse IDE. Launch4J is a Java app launcher. InnoSetup is an installation creator Ant task helps developers on build and integration steps. How to use Launch4J + InnoSetup + Ant build task + Eclipse IDE: http://www.eteks.com/tips/tipCreationExe.html (in French - use Google translate) When you are thinking of distributing a desktop-based Windows EXE file for a Java app, you also need to think about the target environment. It is fine when you are targeting Windows XP or lesser version. But, it will start to be a major frustration when you want to make it work properly under Windows Vista and Windows 7. It is best not to store application configurations, temporary files, etc. that require saving into Of course, you can bypass it by running your app with "Run as Administrator" but it involves the following setup:
How to solve the following issues: (1) Issue with (2) Issue with Other than those, you also need to check on So, be careful when using the hard-coded file path value to your Java app's folder and sub-folders that are installed in
Experiment and enjoy! |
|||||
|
|
If the app. has a GUI and you can distribute from a web site, Java Web Start offers the best solution. JWS works for all platforms that support Java, and is supported by Oracle. (I hear that .Net works well for 'Windows only' solutions.) |
|||||
|
|
winrun4j is very easy to use, my only issue with it is that unless you are distributing with an embedded JVM you'll probably have to provide both a 64bit and a 32bit download. |
|||
|
|

