The Java language has undergone several changes since JDK 1.0 as well as numerous additions of classes and packages to the standard library. Since J2SE 1.4, the evolution of the Java language has been governed by the Java Community Process (JCP), which uses Java Specification Requests (JSRs) to propose and specify additions and changes to the Java platform. The language is specified by the Java Language Specification (JLS); changes to the JLS are managed under JSR 901. In September 2017, Mark Reinhold, chief architect of the Java Platform, proposed to change the release train to "one feature release every six months" rather than the then-current two-year schedule. This proposal took effect for all following versions, and is still the current release schedule. In addition to the language changes, other changes have been made to the Java Class Library over the years, which has grown from a few hundred classes in JDK 1.0 to over three thousand in J2SE 5. Entire new APIs, such as Swing and Java2D, have been introduced, and many of the original JDK 1.0 classes and methods have been deprecated, and very few APIs have been removed (at least one, for threading, in Java 22). Some programs allow the conversion of Java programs from one version of the Java platform to an older one (for example Java 5.0 backported to 1.4) (see Java backporting tools). Regarding Oracle's Java SE support roadmap, Java SE 25 (LTS) is the latest version as of September 2025 (and Java 26 a later released version) while versions 21, 17, 11 and 8 are the other still supported (long-term support − LTS) versions, where Oracle customers will receive Oracle Premier Support. Oracle continues to release no-cost public Java 8 updates for development and personal use indefinitely. In the case of OpenJDK, both commercial long-term support and free software updates are available from multiple organizations in the broader community. Java 26 was released on 17 March 2026 and Java 25 LTS was released on 16 September 2025.
Release table
JDK 1.0
The first version was released on January 23, 1996. The first stable version, JDK 1.0.2, is called Java 1.
It included:
core language features (basic java types in java.lang, and utility classes in java.util) support for graphics (AWT framework) support for creating a Java applet libraries for I/O and networking
JDK 1.1
Major additions in the release on February 19, 1997 included:
extensive retooling of the Abstract Window Toolkit (AWT) event model inner classes added to the language JavaBeans Java Database Connectivity (JDBC) and support for sql Java remote method invocation (RMI) and serialization reflection which supported Introspection only, no modification at runtime was possible. (The ability to modify objects reflectively was added in J2SE 1.2, by introducing the AccessibleObject class and its subclasses such as the Field class.) Just-in-time compilation (JIT) on Microsoft Windows platforms, produced for JavaSoft by Symantec Internationalization and Unicode support originating from Taligent
J2SE 1.2
The release on December 8, 1998 and subsequent releases through J2SE 5.0 were rebranded retrospectively Java 2 and the version name "J2SE" (Java 2 Platform, Standard Edition) replaced JDK to distinguish the base platform from J2EE (Java 2 Platform, Enterprise Edition) and J2ME (Java 2 Platform, Micro Edition). This was a very significant release of Java as it tripled the size of the Java platform to 1520 classes in 59 packages. Major additions included:
strictfp keyword (by JVM 17 an obsolete keyword, should not be used in new code) The Swing graphical API was integrated into the core classes. Sun's JVM was equipped with a JIT compiler for the first time. Java plug-in Java IDL, an IDL implementation for CORBA interoperability Collections framework
J2SE 1.3
The most notable changes in the May 8, 2000 release were:
HotSpot JVM included (the HotSpot JVM was first released in April 1999 for the J2SE 1.2 JVM) RMI was modified to support optional compatibility with CORBA. Java Naming and Directory Interface (JNDI) included in core libraries (previously available as an extension) Java Platform Debugger Architecture (JPDA) JavaSound Synthetic proxy classes Java 1.3 is the last release of Java to officially support Microsoft Windows 95.
J2SE 1.4
The February 6, 2002 release was the first release of the Java platform developed under the Java Community Process as JSR 59. Major changes included:
Language changes assert keyword (specified in JSR 41) Library improvements Regular expressions modeled after Perl regular expressions Exception chaining allows an exception to encapsulate original lower-level exception Internet Protocol version 6 (IPv6) support Non-blocking I/O (named NIO) (specified in JSR 51) Logging API (specified in JSR 47) Image I/O API for reading and writing images in formats like JPEG and PNG Integrated XML parser and XSLT processor (JAXP) (specified in JSR 5 and JSR 63) Integrated security and cryptography extensions (JCE, JSSE, JAAS) Java Web Start included (Java Web Start was first released in March 2001 for J2SE 1.3) (specified in JSR 56) Preferences API (java.util.prefs) Public support and security updates for Java 1.4 ended in October 2008. Paid security updates for Oracle customers ended in February 2013.
Java SE 5
The release on September 30, 2004 was originally numbered 1.5, which is still used as the internal version number. The number was changed to "better reflect the level of maturity, stability, scalability and security of the J2SE". This version was developed under JSR 176. Java SE 5 entered its end-of-public-updates period on April 8, 2008; updates are no longer available to the public as of November 3, 2009. Updates were available to paid Oracle customers until May 2015. Tiger added a number of significant new language features:
… excerpt ends here. Continue reading the full article.
