Home  >  Article  >  Java  >  What is the relationship between jdk and java

What is the relationship between jdk and java

王林
王林Original
2019-11-11 15:59:238008browse

What is the relationship between jdk and java

What is jdk?

jdk is a package (zip) of the Java basic environment and the corresponding development platform standards and toolkits.

Development platform:

j2se, j2ee, j2me

Environment:

Virtual machine, running Environment

The relationship between jdk and java

JDK is the core of the entire JAVA, including the Java Runtime Environment JRE (Java Runtime Envirnment), a bunch of Java tools (javac/ java/jdb, etc.) and Java-based class libraries (i.e. Java API including rt.jar).

1. SE (J2SE), standard edition, is the version we usually use. Starting from JDK 5.0, it was renamed Java SE.

2. EE (J2EE), enterprise edition, enterprise edition, use this JDK to develop J2EE applications. Starting from JDK 5.0, it was renamed Java EE.

3. ME (J2ME), micro edition, is mainly used for java applications on mobile devices and embedded devices. Starting from JDK 5.0, it was renamed Java ME.

Recommended tutorial: Java tutorial

The above is the detailed content of What is the relationship between jdk and java. 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:java -= what does it meanNext article:java -= what does it mean