Home  >  Article  >  Java  >  How to execute java (command execution)

How to execute java (command execution)

尚
Original
2019-11-25 10:54:514248browse

How to execute java (command execution)

Method to execute java files: (Related video tutorial recommendations: java video tutorial)

Using environment: jdk1.6

How to execute java (command execution)

File directory:

How to execute java (command execution)

##javac *.java will generate the corresponding *.class file

java *.class can be executed, .class can be omitted

1. There is no package in t.java

public class t{    
public static void main(String[] args) {
    System.out.println("Hi");
    }
}

The first way

How to execute java (command execution)

The second way

How to execute java (command execution)

2. a.java is packaged

package test;
public class a{
    public static void main(String[] args) {
    System.out.println("Hi");
    }
}

The first way

How to execute java (command execution)

The second method

How to execute java (command execution)

Because a.java contains all the class files of the package, when executing the class file, you need to return to the layer where the package is located. Then execute

through the package name.

The above is the detailed content of How to execute java (command execution). 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