I want to know how to make exe ie.how to make executable file of java instead of run on cmd.I have made three projects in java for desktop application but I dont have idea of how to make it into application.ple ase give me detail information of that problem.
how to make java exe file from class files
Collapse
X
-
Tags: None
-
All java editors produce a .jar file, which are similar to exe file. you can run a jar file just like a .exe file by double clicking on it.
If in case you want to convert it into .exe then, "Jsmooth" is one of the tool. -
The point of JAVA is cross platform compatibility. That is to say, if the computer has a JAVA installation then the JAR file should run on that computer.
However, if you really need to have a binary-executable, then you need to find a compiler that supports such a conversion. A search using your favorite search engine should turn up a couple of these⦠some commercial and a few free/share-ware.Comment
Comment