aspose file tools
The moose likes Beginning Java and the fly likes distribuing a java app to be installed from cd - easy method for user to install it? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "distribuing a java app to be installed from cd - easy method for user to install it?" Watch "distribuing a java app to be installed from cd - easy method for user to install it?" New topic
Author

distribuing a java app to be installed from cd - easy method for user to install it?

Matt Wilcko
Ranch Hand

Joined: Sep 23, 2003
Posts: 65
To clarify, I have an application that I am distributing on CD. I want to make the installation process as simple as possible for the user. Should I have an install program install the Java VM and then install my app? Is there any way to do this without making the user go through the java vm install first?
Can anyone recommend a good installer also?
Sreenivasa Majji
Ranch Hand

Joined: Jul 12, 2001
Posts: 224
Did you tried the installation package "InstallAnyWhere"??


Sreenivasa Majji
Adrian Yan
Ranch Hand

Joined: Oct 02, 2000
Posts: 688
Have you tried izpack? izpack, it's free and pretty good. Also, you need to install JVM no matter what platform you are on, you can work around with this basic steps.
If your Installer itself requires JVM, simple drop a JVM into your CD build and have Installer runs off that JVM on cd.
Then, you can configure your installer to install a jre onto client pc. and then, install your app.
I did this with a script (batch file for dos to install).
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: distribuing a java app to be installed from cd - easy method for user to install it?
 
Similar Threads
Client and Sever JVM
Java on CD-ROM
Java Compiler and Run times(Urgent)
Run JRE from CD?
can JWS be useful in this scenario