java to exe file

In order to make the ".java" file into ".exe" file, i save the java codes as ".jar" in the notepad, so are there follow up steps which i need to do in order to make an executable file? any guides?thanksjp
[225 byte] By [juniorprogrammera] at [2007-11-27 7:32:20]
# 1
Oooh boy.. you have so much to learn, I wouldn't even know where to start.
CeciNEstPasUnProgrammeura at 2007-7-12 19:12:35 > top of Java-index,Java Essentials,Java Programming...
# 2
http://java.sun.com/docs/books/tutorial/getStarted/index.html http://java.sun.com/docs/books/tutorial/deployment/jar/index.html http://java.sun.com/docs/books/tutorial/deployment/jar/appman.html
CeciNEstPasUnProgrammeura at 2007-7-12 19:12:35 > top of Java-index,Java Essentials,Java Programming...
# 3
Download a free utility called JSmooth
Jamwaa at 2007-7-12 19:12:35 > top of Java-index,Java Essentials,Java Programming...
# 4

> In order to make the ".java" file into ".exe" file, i

> save the java codes as ".jar" in the notepad, so are

> there follow up steps which i need to do in order to

> make an executable file? any guides?

>

mv *.java *.exe

Presto you have .exe files. Works fine on my machine, they do exactly the same as any .exe file.

jwentinga at 2007-7-12 19:12:35 > top of Java-index,Java Essentials,Java Programming...
# 5

>> In order to make the ".java" file into ".exe" file, i

>> save the java codes as ".jar" in the notepad, so are

>> there follow up steps which i need to do in order to

>> make an executable file? any guides?

>>

>mv *.java *.exe

>Presto you have .exe files. Works fine on my machine, they do exactly the same as any >.exe file.

Uncompiled Java files to executables? Really?

Anyway, check out JSmooth if you really must do this

http://jsmooth.sourceforge.net/

Joe

Joe_ha at 2007-7-12 19:12:35 > top of Java-index,Java Essentials,Java Programming...