Easy Tutorial
❮ Method Varargs Net Multisoc ❯

Java Example - How to Compile a Java File

Java Examples

In this article, we demonstrate how to compile the HelloWorld.java file, where the Java code is as follows:

HelloWorld.java File

public class HelloWorld {
    public static void main(String []args) {
       System.out.println("Hello World");
    }
}

Next, we use the javac command to compile the Java file and the java command to run the compiled file:

c:\jdk\demoapp> javac HelloWorld.java
c:\jdk\demoapp> java HelloWorld

The output of the above code example is:

Hello World

Java Examples

❮ Method Varargs Net Multisoc ❯