How to create java.exe file
javaexe
Collapse
X
-
Tags: None
-
Originally posted by prasadjavaHow to create java.exe file
Hi,
Java does not support exe concept. In java you will be writing program and saving it is .java extension , Java compiler will prepare a .class for that program.
These .class files are executed by Java Interpretor.
You can club many .class files in to a single jar [java archieve file]. These jar files can be run on JVM.Comment
-
It is possible to create an exe file from a java .class
Make a shortcut - a create shortcut window appears... in 'type the location of the item textbox' insert the javaw command to point to the java class.
For example: javaw Test.class
Type next. A windows exe file will be created!
Good luckComment
Comment