Home » How to Compile and Run Java Program

How to Compile and Run Java Program

by Online Tutorials Library

How to Compile and Run Java Program

In this section, we learn how to compile and run java program step by step.

Step 1:

Write a program on the notepad and save it with .java (for example, DemoFile.java) extension.

Step 2:

Open Command Prompt.

Step 3:

Set the directory in which the .java file is saved. In our case, the .java file is saved in C:\demo.

How to Compile and Run Java Program

Step 4:

Use the following command to compile the Java program. It generates a .class file in the same folder. It also shows an error if any.

How to Compile and Run Java Program

Step 5:

Use the following command to run the Java program:

How to Compile and Run Java Program


Next TopicJava Tutorial

You may also like