tags:

views:

197

answers:

3

Hi I want to create a cross platform installer in java. How to create.

Thanks Sunil Kumar Sahoo

+3  A: 

You want to create an installer or use one? I'm assuming you want to package an application and have it deployable across different architectures.

My team had good success with lzPack. It's free and open source. Another alternative would be Java's Web Start.

hbunny
LzPack ? IzPack, surely ?
Brian Agnew
You are correct - I've fixed it.
hbunny
actually i have created a swing application and created its jar. Now i want to create installer for that jar file (means i want to create installable version of that jar. so how to achieve this)
We use IzPack and it works adequate for what we need, but the application is still in the early-adopter phase. Adding your own code is cumbersome and the documentation is only marginal.
Nemi
A: 

AntInstaller works well. Because it's based on Ant you can do a user-friendly GUI installer and/or a shell-based headless install.

Brian Agnew
Looks interesting, but I see the last release was Jan 2007.
Nemi
So are you suggesting it's not supported ? You can also derive from the above that it's mature and largely feature-complete, can't you ?
Brian Agnew
A: 

Have a look at this: Open Source Installers Generators in Java

Jesper