PDA

View Full Version : Startup Speed of Java Application


PaccoWho
05-15-2006, 09:26 AM
I have a Java App that uses a Java Runtime Environment (JRE) burned on the CD (made with AutoPlay 4.0). Launching the application takes time because it seems like the JRE and other files are copied to the user's hard drive (Temp directory) before executing.

I don't see anything in the project that should cause this.

How can I make it execute off the CD itself? Without this needless coping of runtime dll's etc.?

Thanks.

yosik
05-16-2006, 12:12 AM
If JRE is installed on the user's machine, things run smoothly. Maybe that is the reason of your delay?
You could use dependency to check if JRE is installed.

Yossi