Online Software Educational Training - IT Tutorials - Online Education Training for Computer Software


Home

JAVA PROGRAMMING

Compiling the program

To compiling the hello.java, execute the compiler, javac, specifying the source file on the command line, as shown here.

c:\>javac hello.java

The javac compiler creates a file called hello.class that contains the bytecode version of the program.


Previous

Next