Home  >  Article  >  Java  >  What are the subdirectories after jdk installation?

What are the subdirectories after jdk installation?

尚
Original
2020-04-18 10:55:346550browse

What are the subdirectories after jdk installation?

jdk: jdk root directory, containing copyright, license and README files as well as the source file archive (src.zip) of the Java Core Platform API.

Subdirectory of jdk:

--jdk\bin: jdk development tool executable file directory, which contains javac.exe, java.exe and other executable programs.

--jdk\lib: The class library directory used by jdk development tools, mainly including tools.jar and dt.jar.

--jdk\jre: The root directory of the Java runtime environment used by the jdk development tool. Except for the documentation, it is exactly the same as the deployable JRE.

--jdk\demo: Some examples that come with jdk, including program examples with source code.

--jdk\include: c header file, used to support the native-code library using the jvm Debugger interface.

For more java knowledge, please pay attention to the java basic tutorial column on the PHP Chinese website.

The above is the detailed content of What are the subdirectories after jdk installation?. 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
Previous article:How to write java programNext article:How to write java program