Is everybody thinking that everybody else doesn't release softwares as jar and then releases softwares as exe too?
feedback
|
|
Yes. If you dealing with end users and not programmers, building a native solution for his platfrom is a good idea. Create a dmg, a exe and some linux packages. For exe stuff, take a look at launch4j or jsmooth. | |||||
feedback
|
|
Java software can be release in a number of ways depending on the target market. The simplest for the developer (but hardest for the end user) is to just release a jar file (or set of Jar files). On many systems the JAR will be "double-click-able", and so act as an executable. But if the end user does not have Java installed it will not work. Java Web Start is my preference in most cases. It gives a Java based installer and can set up the start menu, associate file types and all that goodness. But does bring up a security box on install. You could release a zip file with the Jars in and a .bat file and a .sh file to get the going. A thin .exe wrapper round the Jar file. This gives the impression to the end user that the application is native. They normally come with... A Java aware installer. This is a native installer (so different installers for Windows, Mac & Linux). This will be able to detect if the target machine has Java installed and if not be able to kick off the installation of the JRE. It will also be able to do all the fun post-install stuff such as setting file associations and add items to the start menu. Native EXE. Using a Java-to-native compiler (Jet, GCJ or IKVM) you create a native executable. Edit: IKVM | ||||
|
feedback
|
|
Another alternative is install4j,
I have downloaded and installed an application which used it and it worked fine. However, its price may deter individuals or small companies trying to deploy a smallish Java application. | |||
|
feedback
|
|
You can do it yourself by writing a short (C ?) program like this:
But you will need to create a version of this executable for each Operating System. | |||||||
feedback
|
|
Depends on who your audience is. If you write applications intended to be installed by professional system administrators I would just do jars. If you are writing for end users without any technical knowledge, a system dependent binary might be the right choice. When taking the jar route, I would consider building two distributions: one including all the libraries the application depends on and one without these. As for the binary: why not supply a thin wrapper in the form of a batch file or shell script? | |||
|
feedback
|