Hi
I'm sorry for English because I'm french,
but I have some question about JAVA.
I would to know if you can compil the script
to executable like .exe or there is just the javac
command compil which change the program in
..class
gilles
Printable View
Hi
I'm sorry for English because I'm french,
but I have some question about JAVA.
I would to know if you can compil the script
to executable like .exe or there is just the javac
command compil which change the program in
..class
gilles
Here are the things in java:
1) create a .java file( say it is FirstJavaProg.java)
2) use javac command like
javac FirstJavaProg.java.
Then FirstJavaProg.class will be created.
3) then use
java FirstJavaProg
It will run. Very simple is not it?
Nikhil
"gilles" <gilles@cadmium.fr> wrote:
>Hi
>I'm sorry for English because I'm french,
>but I have some question about JAVA.
>I would to know if you can compil the script
>to executable like .exe or there is just the javac
>command compil which change the program in
>..class
>
>gilles
>
>