help in java [message #92065] |
Tue, 24 February 2004 23:50 |
mani
Messages: 105 Registered: September 1999
|
Senior Member |
|
|
Hi,
Is there any way of creating .exe file like we create exe file in VB using package and deployment wizard....This exe should run in windows environment.....
Any help is highly appreciated!!!!!
Regards
Mani.A
|
|
|
Re: help in java [message #92075 is a reply to message #92065] |
Sun, 29 February 2004 10:37 |
Frank Naude
Messages: 4581 Registered: April 1998
|
Senior Member |
|
|
Hi,
Java programs are executed by a JVM (Java Virtual Machine), and can thus not be compiled to an executable program. Nevertheless, nothing prevents you to compile a stub executable to start the Java program.
Best regards.
Frank
|
|
|
Re: help in java [message #92083 is a reply to message #92065] |
Wed, 03 March 2004 03:11 |
stefan feenstra
Messages: 4 Registered: March 2004
|
Junior Member |
|
|
question:
Hi,
Is there any way of creating .exe file like we create exe file in VB using package and deployment wizard....This exe should run in windows environment.....
Any help is highly appreciated!!!!!
Regards
Mani.A
you can create .exe fils with java compile it with javac
then run the .class file with native2ascii.exe(in the j2sdk dir)
it wil be a native .exe program
i don't know if you have a nice java interface then
|
|
|