JAVA help document full series JDK1.5 JDK1.6 JDK1.7 official Chinese and English complete edition

  • 2020-04-01 02:49:17
  • OfStack

The JDK(Java Development Kit) is a program Development environment for writing Java applets and applications. It consists of a runtime environment above the operating system layer and the tools developers need to compile, debug, and run applets and applications written in the Java language.

The JDK (Java Development Kit) is a Sun Microsystems product for Java developers. Since the introduction of Java, the JDK has become the most widely used Java SDK (Software development kit).

The basic components included in the JDK include:

    , javac compiler for converting source programs to bytecode

    , the jar jar packaging tool packages the related class files into a file

    , javadoc copybuilder, extracting documents from source code comments

    , JDB debugger, error check tool

The JDK also includes the full JRE (Java Runtime Environment), also known as private Runtime. Includes various library classes for production environments, as well as supplemental libraries for developers, such as internationalized libraries, and IDL libraries.

Various sample programs are also included in the JDK to show the various parts of the Java API.


JDK official download
JDK1.5:
http://cds.sun.com/is-bin/INTERSHOP.enfinity/WFS/CDS-CDS_Developer-Site/en_US/-/USD/VerifyItem-Start/jdk-1_5_0_07-windows-i586-p.exe? BundledLineItemUUID = 1 y5ibe. MoNgAAAEhQaQH6rQU & OrderID = BjFIBe. MiUsAAAEhJaQH6rQU & ProductID = 83 hacufbfwsaaaeyqnw5axum & _5_0_07 FileName = / JDK - 1 - Windows - i586 - p.e xe

JDK1.6:
http://www.java.net/download/jdk6/6u10/promoted/b32/binaries/jdk-6u10-rc2-bin-b32-windows-i586-p-12_sep_2008.exe

JDK 1.7:
http://www.java.net/download/jdk7/archive/b134/binaries/jdk-7-ea-bin-b134-windows-i586-17_mar_2011.exe
http://www.java.net/download/jdk7/archive/b138/binaries/jdk-7-ea-bin-b138-windows-i586-14_apr_2011.exe
http://download.oracle.com/otn-pub/java/jdk/7/jdk-7-windows-i586.exe

JDK API help documentation:

The JDK 5:
Java SE 5 API version CHM download: http://download.java.net/jdk/jdk-api-localizations/jdk-api-zh-cn/builds/JDK_API_1_5_zh_CN.CHM
JAVASE5 EN Downloads: http://javadoc.allimant.org/dist/jdk150.zip

The JDK 6:

JDK6 API: https://jdk-api-zh-cn.dev.java.net/
JDK6 has API version HTML documents online: http://download.java.net/jdk/jdk-api-localizations/jdk-api-zh-cn/builds/latest/html/zh_CN/api/
JDK6 has API version download zip format: http://download.java.net/jdk/jdk-api-localizations/jdk-api-zh-cn/builds/latest/html_zh_CN.zip
JDK6 has API CHM Chinese reference download: http://chinesedocument.com/upimg/soft/JDK6API Chinese reference 070114. Rar
Java SE 6 API version CHM download: http://download.java.net/jdk/jdk-api-localizations/jdk-api-zh-cn/publish/1.6.0/chm/JDK_API_1_6_zh_CN.CHM

ZIP format: http://download.java.net/jdk/jdk-api-localizations/jdk-api-zh-cn/publish/1.6.0/html_zh_CN.zip
English Version: http://javadoc.allimant.org/dist/j2se6.zip


JDK 7:
English Verson: http://download.java.net/jdk7/docs/api/
http://www.java.net/download/jdk7/archive/b138/jdk-7-ea-bin-b138-apidocs-14_apr_2011.zip

 

Please refer to the following website for detailed version information of the JDK and the download address for all JDK versions:
http://java.sun.com/javase/downloads/index.jsp
http://java.sun.com/products/archive/
http://www.allimant.org/javadoc/index.php
http://www.oracle.com/technetwork/java/javase/downloads/java-se-jdk-7-download-432154.html


Address of this site online manual:
(link: http://shouce.jb51.net/java/jdk1.7en)
(link: http://shouce.jb51.net/java/jdk1.6/)
(link: http://shouce.jb51.net/java/jdk1.5/)


Related articles: