Java version history


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, which uses Java Specification Requests to propose and specify additions and changes to the Java platform. The language is specified by the Java Language Specification ; changes to the JLS are managed under . 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. Some programs allow the conversion of Java programs from one version of the Java platform to an older one .
Regarding Oracle's Java SE support roadmap, Java SE 25 is the latest version as of September 2025, while versions 21, 17, 11 and 8 are the other still supported 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 25 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
  • support for graphics
  • 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:
The release on December 8, 1998 and subsequent releases through J2SE 5.0 were rebranded retrospectively Java 2 and the version name "J2SE" replaced JDK to distinguish the base platform from J2EE and J2ME. 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:
The most notable changes in the May 8, 2000 release were:
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 . Major changes included:
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 .
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:
  • Generics: provides compile-time type safety for collections and eliminates the need for most typecasts
  • Metadata: also called annotations; allows language constructs such as classes and methods to be tagged with additional data, which can then be processed by metadata-aware utilities
  • Autoboxing/unboxing: automatic conversions between primitive types and primitive wrapper classes
  • Enumerations: the enum keyword creates a typesafe, ordered list of values ; previously this could only be achieved by non-typesafe constant integers or manually constructed classes
  • Varargs: the last parameter of a method can now be declared using a type name followed by three dots ; in the calling code any number of parameters of that type can be used and they are then placed in an array to be passed to the method, or alternatively the calling code can pass an array of that type
  • Enhanced for each loop: the for loop syntax is extended with special syntax for iterating over each member of either an array or any, such as the standard classes
  • Improved semantics of execution for multi-threaded Java programs; the new Java memory model addresses issues of complexity, effectiveness, and performance of previous specifications
  • Static imports
There were also the following improvements to the standard libraries:
  • Automatic stub generation for RMI objects
  • Swing: New skinnable look and feel, called synth
  • The in package
  • Scanner class for parsing data from various input streams and buffers
Java 5 is the last release of Java to officially support Microsoft Windows 98 and Windows ME, while Windows Vista was the newest version of Windows that Java SE 5 was supported on prior to Java 5 going end-of-life in October 2009.
Java 5 Update 5 is the last release of Java to work on Windows 95 and Windows NT 4.0.
Java 5 was first available on Apple Mac OS X 10.4 and was the default version of Java installed on Apple Mac OS X 10.5.
Public support and security updates for Java 1.5 ended in November 2009. Paid security updates for Oracle customers ended in April 2015.

Versioning change

This version introduced a new versioning system for the Java language, although the old versioning system continued to be used for developer libraries:
This correspondence continued through later releases.

Java SE 6

As of the version released on December 11, 2006, Sun replaced the name "J2SE" with Java SE and dropped the ".0" from the version number. Internal numbering for developers remains 1.6.0.
This version was developed under .
During the development phase, new builds including enhancements and bug fixes were released approximately weekly. Beta versions were released in February and June 2006, leading up to a final release that occurred on December 11, 2006.
Major changes included in this version:
  • Support for older Win9x versions dropped; unofficially, Java 6 Update 7 was the last release of Java shown to work on these versions of Windows. This is believed to be due to the major changes in Update 10.
  • Scripting Language Support : Generic API for tight integration with scripting languages, and built-in Mozilla JavaScript Rhino integration.
  • Dramatic performance improvements for the core platform, and Swing.
  • Improved Web Service support through JAX-WS.
  • JDBC 4.0 support.
  • Java Compiler API : an API allowing a Java program to select and invoke a Java Compiler programmatically.
  • Upgrade of JAXB to version 2.0: Including integration of a StAX parser.
  • Support for pluggable annotations.
  • Many GUI improvements, such as integration of SwingWorker in the API, table sorting and filtering, and true Swing double-buffering.
  • JVM improvements include: synchronization and compiler performance optimizations, new algorithms and upgrades to existing garbage collection algorithms, and application start-up performance.
Java 6 can be installed to Mac OS X 10.5 running on 64-bit processor machines. Java 6 is also supported by both 32-bit and 64-bit machines running Mac OS X 10.6.
Java 6 reached the end of its supported life in February 2013, at which time all public updates, including security updates, were scheduled to be stopped. Oracle released two more updates to Java 6 in March and April 2013, which patched some security vulnerabilities.

Java 6 updates

After Java 6 release, Sun, and later Oracle, released several updates which, while not changing any public API, enhanced end-user usability or fixed bugs.
ReleaseRelease dateHighlights
Java SE 62006-12-23This release adds many enhancements in the fields of Web services, scripting, databases, pluggable annotations, and security, as well as quality, compatibility, and stability. JConsole is now officially supported. Java DB support has been added.
Java SE 6 Update 12007-05-07
Java SE 6 Update 22007-07-03
Java SE 6 Update 32007-10-03
Java SE 6 Update 42008-01-14HotSpot VM 10
Java SE 6 Update 52008-03-05Several security flaws were eliminated. New root certificates from AOL, DigiCert, and TrustCenter are now included.
Java SE 6 Update 62008-04-16A workaround for the infamous Xlib/XCB locking assertion issue was introduced. A memory leak when using Kerberos authentication with LoginContext was fixed. Several other bugs were fixed.
Java SE 6 Update 7Unofficially, Java SE 6 Update 7 is the last version of Java that was shown to be working on the Win9x family of operating systems
Java SE 6 Update 102008-10-15HotSpot VM 11. Major changes for this update include:
  • Java Deployment Toolkit, a set of JavaScript functions to ease the deployment of applets and Java Web Start applications.
  • Java Kernel, a small installer including only the most commonly used JRE classes. Other packages are downloaded when needed.
  • Enhanced updater.
  • Enhanced versioning and pack200 support: server-side support is no longer required.
  • Java Quick Starter, to improve cold start-up time.
  • Improved performance of Java2D graphics primitives on Windows, using Direct3D and hardware acceleration.
  • A new Swing look and feel called Nimbus and based on synth.
  • Next-Generation Java Plug-In: applets now run in a separate process and support many features of Web Start applications.
Java SE 6 Update 11 2008-12-0313 security fixes
Java SE 6 Update 122008-12-12No security fixes; 64-bit Java plug-in ; Windows Server 2008 support; performance improvements of graphics and JavaFX applications
Java SE 6 Update 132009-03-247 security fixes, JNDI store and retrieve Java objects in LDAP slightly modified, JMX Change, 4 new root certificates added
Java SE 6 Update 142009-05-28HotSpot VM 14. This release includes extensive performance updates to the JIT compiler, compressed pointers for 64-bit machines, as well as experimental support for the Garbage-First a low-pause Garbage Collector.The -XX:+DoEscapeAnalysis option directs the HotSpot JIT compiler to use escape analysis to determine whether local objects can be allocated on the stack instead of the heap.
Some developers have noticed an issue introduced in this release which causes debuggers to miss breakpoints seemingly randomly. Sun has a corresponding bug, which is tracking the issue. The workaround applies to the Client and Server VMs. Using the -XX:+UseParallelGC option will prevent the failure. Another workaround is to roll back to update 13, or to upgrade to update 16.
Java SE 6 Update 152009-08-04Introduced patch-in-place functionality
Java SE 6 Update 162009-08-11Fixed the issue introduced in update 14 which caused debuggers to miss breakpoints
Java SE 6 Update 172009-11-04Security fixes; two new root certificates
Java SE 6 Update 182010-01-13No security fixes; Hotspot VM 16; support for Ubuntu 8.04 LTS Desktop Edition, SLES 11, Windows 7, Red Hat Enterprise Linux 5.3, Firefox 3.6, VisualVM 1.2; updated Java DB; many performance improvements
Java SE 6 Update 192010-03-30Security fixes; root certificate changes: seven new, three removed, five replaced with stronger signature algorithms; interim fix for TLS renegotiation attack
Java SE 6 Update 202010-04-152 security fixes
Java SE 6 Update 212010-07-07No security fixes; Hotspot VM 17; support for Red Hat Enterprise Linux 5.4 and 5.5, Oracle Enterprise Linux 4.8, 5.4, 5.5; Google Chrome 4 support; support for Customized Loading Progress Indicators; VisualVM 1.2.2
Java SE 6 Update 222010-10-1229 security fixes; support
Java SE 6 Update 232010-12-08No security fixes; Hotspot VM 19; better support for right-to-left languages
Java SE 6 Update 242011-02-1521 security fixes; updated Java DB
Java SE 6 Update 252011-03-21No security fixes; Hotspot VM 20; support for Internet Explorer 9, Firefox 4 and Chrome 10; improved BigDecimal; includes "tiered" compilation in the Server VM that enables it to start quickly as does the Client VM, while achieving better peak performance
Java SE 6 Update 262011-06-0717 new security fixes; last version compatible with Windows Vista SP1
Java SE 6 Update 272011-08-16No security fixes; certification for Firefox 5
Java SE 6 Update 292011-10-1820 security fixes, various bug fixes
Java SE 6 Update 302011-12-12No security fixes; fix for SSL regression in Update 29; support for Red Hat Enterprise Linux 6
Java SE 6 Update 312012-02-1414 security fixes and one bug fix; last version work reliably for Windows 2000
Java SE 6 Update 322012-04-26No security fixes, various bug fixes
Java SE 6 Update 332012-06-1214 security fixes, improved VM configuration file loading
Java SE 6 Update 342012-08-14No security fixes, various bug fixes
Java SE 6 Update 352012-08-30Contains a security-in-depth fix
Java SE 6 Update 372012-10-1630 security fixes
Java SE 6 Update 382012-12-11Various bug fixes
Java SE 6 Update 392013-02-0150 security fixes
Java SE 6 Update 412013-02-195 security fixes
Java SE 6 Update 432013-03-042 security fixes
Java SE 6 Update 452013-04-1642 security fixes; other changes; final public update.
Java SE 6 Update 512013-06-18Not available publicly, only available through the Java SE Support program and in Apple Update for OS X Snow Leopard, Lion & Mountain Lion; up to 40 security fixes
Java SE 6 Update 652013-10-15Not available publicly, only available through the Java SE Support program and in Apple Update for OS X Snow Leopard, Lion & Mountain Lion; at least 11 critical security fixes
Java SE 6 Update 712014-01-14Not available for public download; 33 fixes
Java SE 6 Update 752014-04-15Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster no. #54; 25 security fixes
Java SE 6 Update 812014-07-15Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 11 security fixes
Java SE 6 Update 852014-10-16Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 18 security fixes
Java SE 6 Update 912015-01-21Linux x64 and Windows i586 versions are available as the Java SE 6 Reference Implementation. Other versions are only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 15 security fixes
Java SE 6 Update 952015-04-14Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 14 security fixes
Java SE 6 Update 1012015-07-15Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 18 security fixes Certification for IE 10 and 11 was introduced in 1.6.0_101
Java SE 6 Update 1052015-10-20Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 17 security fixes
Java SE 6 Update 1112016-01-20Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 13 security fixes
Java SE 6 Update 1132016-02-05Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 1 security fix
Java SE 6 Update 1152016-04-21Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 8 security fixes
Java SE 6 Update 1212016-07-19Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 15 security fixes
Java SE 6 Update 1312016-10-18Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 13 security fixes
Java SE 6 Update 1412017-01-17Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 17 security fixes
Java SE 6 Update 1512017-04-18Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 10 security fixes
Java SE 6 Update 1612017-07-18Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 5 security fixes
Java SE 6 Update 1712017-10-20Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 7 security fixes
Java SE 6 Update 1812018-01-16Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 12 security fixes
Java SE 6 Update 1912018-04-17Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 7 security fixes
Java SE 6 Update 2012018-07-17Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 3 security fixes
Java SE 6 Update 2112018-10-18Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 8 security fixes