Home  >  Article  >  Java  >  How to execute java program

How to execute java program

王林
王林Original
2019-11-19 13:12:003872browse

How to execute java program

First of all, we need to use the environmental dependencies of jdk to run the Java program on the command line. To open the jdk package, we need to find the javac and java files, as shown in the following figure:

How to execute java program

Next we need to open the run window, and then enter the cmd command in the run window, as shown below:

How to execute java program

In the CMD command In the line interface, we enter the cd command to enter the directory where the java program file is located, as shown in the following figure:

How to execute java program

Next, execute the javac command to compile the java program file, as shown below Shown:

How to execute java program

After the compilation is completed, we will see a class file under the folder. This is the file generated by the Java virtual machine after compilation, as shown in the following figure:

How to execute java program

Finally we execute the java command and bring the name of the file we just compiled to run the java program, as shown in the figure below:

How to execute java program

Recommended tutorial: java introductory tutorial

The above is the detailed content of How to execute java program. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn