Java version history
Template:Short description Script error: No such module "about".
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.[1][2] 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[3]). 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,[4] Java SE 24 was the latest version in June 2025, while versions 21, 17, 11 and 8 were the 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[4] and personal use indefinitely.[5]
In the case of OpenJDK, both commercial long-term support and free software updates are available from multiple organizations in the broader community.[6]
Java 23 was released on 17 September 2024. Java 24 was released on 18 March 2025.[7]
Release table
Template:Java version history table
JDK 1.0
Template:Infobox Java version The first version was released on January 23, 1996.[8][9] The first stable version, JDK 1.0.2, is called Java 1.[9]
JDK 1.1
Template:Infobox Java version Major additions in the release on February 19, 1997 included:[10]
- extensive retooling of the Abstract Window Toolkit (AWT) event model
- inner classes added to the language
- JavaBeans
- Java Database Connectivity (JDBC)
- 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 Template:Javadoc class and its subclasses such as the Template:Javadoc class.)
- Just-in-time compilation (JIT) on Microsoft Windows platforms, produced for JavaSoft by Symantec
- Internationalization and Unicode support originating from Taligent[11]
J2SE 1.2
Template:Infobox Java version 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:[12]
strictfpkeyword (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
Template:Infobox Java version The most notable changes in the May 8, 2000 release were:[13][14]
- 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.[15]
J2SE 1.4
Template:Infobox Java version 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:[16][17]
- Language changes
- 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.[18]
Script error: No such module "anchor".
Java SE 5
Template:Infobox Java version 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".[19] 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.[4]
Tiger added a number of significant new language features:[20][21]
- Generics: provides compile-time (static) type safety for collections and eliminates the need for most typecasts (type conversion) (specified by JSR 14)
- 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 (specified by JSR 175)
- Autoboxing/unboxing: automatic conversions between primitive types (such as
int) and primitive wrapper classes (such asInteger) (specified by JSR 201) - Enumerations: the
enumkeyword creates a typesafe, ordered list of values (such asDay.MONDAY,Day.TUESDAY, etc.); previously this could only be achieved by non-typesafe constant integers or manually constructed classes (typesafe enum pattern) (specified by JSR 201) - Varargs: the last parameter of a method can now be declared using a type name followed by three dots (e.g.
void drawtext(String... lines)); 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 eachloop: theforloop syntax is extended with special syntax for iterating over each member of either an array or anyIterable, such as the standardCollectionclasses (specified by JSR 201) - Improved semantics of execution for multi-threaded Java programs; the new Java memory model addresses issues of complexity, effectiveness, and performance of previous specifications[22]
- 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 concurrency utilities in package
java.util.concurrent[23] - 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,[24] 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.[18]
Java 5 Update 5 (1.5.0_05) is the last release of Java to work on Windows 95 (with Internet Explorer 5.5 installed) and Windows NT 4.0.[25]
Java 5 was first available on Apple Mac OS X 10.4 (Tiger)[26] and was the default version of Java installed on Apple Mac OS X 10.5 (Leopard).
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:
<templatestyles src="Template:Blockquote/styles.css" />
Both version numbers "1.5.0" and "5.0" are used to identify this release of the Java 2 Platform Standard Edition. Version "5.0" is the product version, while "1.5.0" is the developer version. The number "5.0" is used to better reflect the level of maturity, stability, scalability and security of the J2SE.
Script error: No such module "Check for unknown parameters".
This correspondence continued through later releases (Java 6 = JDK 1.6, Java 7 = JDK 1.7, and so on).
Script error: No such module "anchor".
Java SE 6
Template:Infobox Java version 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.[28] Internal numbering for developers remains 1.6.0.[29]
This version was developed under JSR 270.
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:[30][31]
- 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.Script error: No such module "Unsubst". This is believedScript error: No such module "Unsubst". to be due to the major changes in Update 10.
- Scripting Language Support (JSR 223): Generic API for tight integration with scripting languages, and built-in Mozilla JavaScript Rhino integration.
- Dramatic performance improvements for the core platform,[32][33] and Swing.
- Improved Web Service support through JAX-WS (JSR 224).
- JDBC 4.0 support (JSR 221).
- Java Compiler API (JSR 199): 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 (JSR 269).[34]
- Many GUI improvements, such as integration of SwingWorker in the API, table sorting and filtering, and true Swing double-buffering (eliminating the gray-area effect).
- 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 (Leopard) running on 64-bit (Core 2 Duo and higher) processor machines.[35] Java 6 is also supported by both 32-bit and 64-bit machines running Mac OS X 10.6 (Snow Leopard).
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.[36][37] Oracle released two more updates to Java 6 in March and April 2013, which patched some security vulnerabilities.[38][39]
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.[40]
| Release | Release date | Highlights |
|---|---|---|
| Java SE 6 | 2006-12-23 | This 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 1Script error: No such module "Unsubst". | 2007-05-07 | |
| Java SE 6 Update 2Script error: No such module "Unsubst". | 2007-07-03 | |
| Java SE 6 Update 3Script error: No such module "Unsubst". | 2007-10-03 | |
| Java SE 6 Update 4Script error: No such module "Unsubst". | 2008-01-14 | HotSpot VM 10 |
| Java SE 6 Update 5Script error: No such module "Unsubst". | 2008-03-05 | Several security flaws were eliminated. New root certificates from AOL, DigiCert, and TrustCenter are now included. |
| Java SE 6 Update 6Script error: No such module "Unsubst". | 2008-04-16 | A 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 7Script error: No such module "Unsubst". | Unofficially, Java SE 6 Update 7 (1.6.0.7) is the last version of Java that was shown to be working on the Win9x family of operating systemsScript error: No such module "Unsubst". | |
| Java SE 6 Update 10Script error: No such module "Unsubst". | 2008-10-15 | HotSpot VM 11. Major changes for this update include:
|
| Java SE 6 Update 11[43] Script error: No such module "Unsubst". | 2008-12-03 | 13 security fixesScript error: No such module "Unsubst". |
| Java SE 6 Update 12Script error: No such module "Unsubst". | 2008-12-12 | No security fixes; 64-bit Java plug-in (for 64-bit web browsers only); Windows Server 2008 support; performance improvements of graphics and JavaFX applications |
| Java SE 6 Update 13Script error: No such module "Unsubst". | 2009-03-24 | 7 security fixes, JNDI store and retrieve Java objects in LDAP slightly modified, JMX Change (createMBeanunregisterMBean), 4 new root certificates added |
| Java SE 6 Update 14Script error: No such module "Unsubst". | 2009-05-28 | HotSpot 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 (G1) a low-pause Garbage Collector.[44][45]
The Some developers have noticed an issue introduced in this release which causes debuggers to miss breakpoints seemingly randomly.[46] Sun has a corresponding bug, which is tracking the issue. The workaround applies to the Client and Server VMs.[47] Using the |
| Java SE 6 Update 15Script error: No such module "Unsubst". | 2009-08-04 | Introduced patch-in-place functionality |
| Java SE 6 Update 16Script error: No such module "Unsubst". | 2009-08-11 | Fixed the issue introduced in update 14 which caused debuggers to miss breakpoints |
| Java SE 6 Update 17Script error: No such module "Unsubst". | 2009-11-04 | Security fixes; two new root certificates |
| Java SE 6 Update 18Script error: No such module "Unsubst". | 2010-01-13 | No 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 19Script error: No such module "Unsubst". | 2010-03-30 | Security fixes; root certificate changes: seven new, three removed, five replaced with stronger signature algorithms; interim fix for TLS renegotiation attack |
| Java SE 6 Update 20Script error: No such module "Unsubst". | 2010-04-15 | 2 security fixes |
| Java SE 6 Update 21Script error: No such module "Unsubst". | 2010-07-07 | No 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 22Script error: No such module "Unsubst". | 2010-10-12 | 29 security fixes; Template:IETF RFC support |
| Java SE 6 Update 23Script error: No such module "Unsubst". | 2010-12-08 | No security fixes; Hotspot VM 19; better support for right-to-left languages |
| Java SE 6 Update 24Script error: No such module "Unsubst". | 2011-02-15 | 21 security fixes; updated Java DB |
| Java SE 6 Update 25Script error: No such module "Unsubst". | 2011-03-21 | No 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 (this feature is enabled by specifying -server and -XX:+TieredCompilation command options)
|
| Java SE 6 Update 26Script error: No such module "Unsubst". | 2011-06-07 | 17 new security fixes;[48] last version compatible with Windows Vista SP1 |
| Java SE 6 Update 27Script error: No such module "Unsubst". | 2011-08-16 | No security fixes; certification for Firefox 5 |
| Java SE 6 Update 29Script error: No such module "Unsubst". | 2011-10-18 | 20 security fixes, various bug fixes[49] |
| Java SE 6 Update 30Script error: No such module "Unsubst". | 2011-12-12 | No security fixes; fix for SSL regression in Update 29; support for Red Hat Enterprise Linux 6 |
| Java SE 6 Update 31Script error: No such module "Unsubst". | 2012-02-14 | 14 security fixes and one bug fix; last version work reliably for Windows 2000[50] |
| Java SE 6 Update 32Script error: No such module "Unsubst". | 2012-04-26 | No security fixes, various bug fixes |
| Java SE 6 Update 33Script error: No such module "Unsubst". | 2012-06-12 | 14 security fixes, improved VM configuration file loading |
| Java SE 6 Update 34Script error: No such module "Unsubst". | 2012-08-14 | No security fixes, various bug fixes |
| Java SE 6 Update 35Script error: No such module "Unsubst". | 2012-08-30 | Contains a security-in-depth fix[51] |
| Java SE 6 Update 37Script error: No such module "Unsubst". | 2012-10-16 | 30 security fixes |
| Java SE 6 Update 38Script error: No such module "Unsubst". | 2012-12-11 | Various bug fixesScript error: No such module "Unsubst". |
| Java SE 6 Update 39Script error: No such module "Unsubst". | 2013-02-01 | 50 security fixes |
| Java SE 6 Update 41Script error: No such module "Unsubst". | 2013-02-19 | 5 security fixes |
| Java SE 6 Update 43Script error: No such module "Unsubst". | 2013-03-04 | 2 security fixes |
| Java SE 6 Update 45Script error: No such module "Unsubst". | 2013-04-16 | 42 security fixes;[52] other changes; final public update.[53] |
| Java SE 6 Update 51 | 2013-06-18 | Not 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[54] |
| Java SE 6 Update 65 | 2013-10-15 | Not 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[55] |
| Java SE 6 Update 71 | 2014-01-14 | Not available for public download; 33 fixesScript error: No such module "Unsubst". |
| Java SE 6 Update 75 | 2014-04-15 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster no. #54; 25 security fixes[56] |
| Java SE 6 Update 81 | 2014-07-15 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 11 security fixes[57] |
| Java SE 6 Update 85 | 2014-10-16 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 18 security fixes[58] |
| Java SE 6 Update 91 | 2015-01-21 | Linux x64 and Windows i586 versions are available as the Java SE 6 Reference Implementation.[59] Other versions are only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 15 security fixes[60] |
| Java SE 6 Update 95 | 2015-04-14 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 14 security fixes[61] |
| Java SE 6 Update 101 | 2015-07-15 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 18 security fixes[62] Certification for IE 10 and 11 was introduced in 1.6.0_101 |
| Java SE 6 Update 105 | 2015-10-20 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 17 security fixes[63] |
| Java SE 6 Update 111 | 2016-01-20 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 13 security fixes[64] |
| Java SE 6 Update 113 | 2016-02-05 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 1 security fix[65] |
| Java SE 6 Update 115 | 2016-04-21 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 8 security fixes[66] |
| Java SE 6 Update 121 | 2016-07-19 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 15 security fixes[67] |
| Java SE 6 Update 131 | 2016-10-18 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 13 security fixes[68] |
| Java SE 6 Update 141 | 2017-01-17 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 17 security fixes[69] |
| Java SE 6 Update 151 | 2017-04-18 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 10 security fixes[70] |
| Java SE 6 Update 161 | 2017-07-18 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 5 security fixes[71] |
| Java SE 6 Update 171 | 2017-10-20 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 7 security fixes[72] |
| Java SE 6 Update 181 | 2018-01-16 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 12 security fixes[73] |
| Java SE 6 Update 191 | 2018-04-17 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 7 security fixes[74] |
| Java SE 6 Update 201 | 2018-07-17 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 3 security fixes[75] |
| Java SE 6 Update 211 | 2018-10-18 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 8 security fixes[76] |
Script error: No such module "anchor".
Java SE 7
Template:Infobox Java version Java 7 was a major update that launched on July 7, 2011[77] and was made available for developers on July 28, 2011.[78] The development period was organized into thirteen milestones; on June 6, 2011, the last of the thirteen milestones was finished.[78][79] On average, 8 builds (which generally included enhancements and bug fixes) were released per milestone. The feature list at the OpenJDK 7 project lists many of the changes.
Additions in Java 7 include:[80]
- JVM support for dynamic languages, with the new
invokedynamicbytecode under JSR-292,[81] following the prototyping work currently done on the Multi Language Virtual Machine - Compressed 64-bit pointers[82] (available in Java 6 with
-XX:+UseCompressedOops)[83] - Project Coin language features:[84]
- Strings in switch[85]
- Automatic resource management in try-statement aka try-with-resources statement[86]
- Improved type inference for generic instance creation, aka the diamond operator
<>[87] - Simplified varargs method declaration[88]
- Binary integer literals[89]
- Allowing underscores in numeric literals[90]
- Catching multiple exception types and rethrowing exceptions with improved type checking[91]
- Concurrency utilities under JSR 166[92]
- New file I/O library (defined by JSR 203) adding support for multiple file systems, file metadata and symbolic links. The new packages are
java.nio.file,java.nio.file.attributeandjava.nio.file.spi[93][94] - Timsort is used to sort collections and arrays of objects instead of merge sort
- Library-level support for elliptic curve cryptography algorithms
- An XRender pipeline for Java 2D, which improves handling of features specific to modern GPUs
- New platform APIs for the graphics features originally implemented in version 6u10 as unsupported APIs[95]
- Enhanced library-level support for new network protocols, including SCTP and Sockets Direct Protocol
- Upstream updates to XML and Unicode
- Java deployment rule sets[96]
Lambda (Java's implementation of lambda functions), Jigsaw (Java's implementation of modules), and part of Coin were dropped from Java 7, and released as part of Java 8 (except for Jigsaw, which was released in Java 9).[97][98]
Java 7 was the default version to download on java.com from April 2012 until Java 8 was released.[99]
Java 7 updates
Oracle issued public updates to the Java 7 family on a quarterly basis[100] until April 2015 when the product reached the end of its public availability.[101] Further updates for JDK 7, which continued until July 2022, are only made available to customers with a support contract.[102]
| Release | Release date | Highlights |
|---|---|---|
| Java SE 7[103] | 2011-07-28 | Initial release; HotSpot VM 21 |
| Java SE 7 Update 1Script error: No such module "Unsubst". | 2011-10-18 | 20 security fixes, other bug fixes |
| Java SE 7 Update 2Script error: No such module "Unsubst". | 2011-12-12 | No security fixes; HotSpot VM 22; reliability and performance improvements; support for Solaris 11 and Firefox 5 and later; JavaFX included with Java SE JDK, improvements for web-deployed applications |
| Java SE 7 Update 3Script error: No such module "Unsubst". | 2012-02-14 | 14 security fixes[104] |
| Java SE 7 Update 4Script error: No such module "Unsubst". | 2012-04-26 | No security updates; HotSpot VM 23; JDK Support for Mac OS X; New Supported Garbage Collector: Garbage-First (G1) |
| Java SE 7 Update 5Script error: No such module "Unsubst". | 2012-06-12 | 14 security fixes[105] |
| Java SE 7 Update 6Script error: No such module "Unsubst". | 2012-08-14 | JavaFX and Java Access Bridge included in Java SE JDK and JRE installation, JavaFX support for touch-enabled monitors and touch pads, JavaFX support for Linux, JDK and JRE Support for Mac OS X, JDK for Linux on ARM[106] |
| Java SE 7 Update 7Script error: No such module "Unsubst". | 2012-08-30 | 4 security fixes[51] |
| Java SE 7 Update 9Script error: No such module "Unsubst". | 2012-10-16 | 30 security vulnerabilities fixes[107] |
| Java SE 7 Update 10Script error: No such module "Unsubst". | 2012-12-11 | New security features, such as the ability to disable any Java application from running in the browser and new dialogs to warn you when the JRE is insecure, and bug fixes |
| Java SE 7 Update 11Script error: No such module "Unsubst". | 2013-01-13 | Olson Data 2012i; bugfix for problems with registration of plugin on systems with Stand-alone version of JavaFX Installed, security fixes for Template:CVE;[108] the default security level for Java applets and web start applications has been increased from "Medium" to "High" |
| Java SE 7 Update 13[109] Script error: No such module "Unsubst". | 2013-02-01 | 50 security fixes |
| Java SE 7 Update 15Script error: No such module "Unsubst". | 2013-02-19 | 5 security fixes |
| Java SE 7 Update 17Script error: No such module "Unsubst". | 2013-03-04 | 2 security fixes |
| Java SE 7 Update 21Script error: No such module "Unsubst". | 2013-04-16 | Multiple changes including 42 security fixes, a new Server JRE that does not include the plug-in, and the JDK for Linux on ARM |
| Java SE 7 Update 25Script error: No such module "Unsubst". | 2013-06-18 | Multiple changes including 40 security fixes[54][110] |
| Java SE 7 Update 40Script error: No such module "Unsubst". | 2013-09-10 | 621 bug fixes,[111] New security features, hardfloat ARM, Java Mission Control 5.2 and Retina Display support[112] |
| Java SE 7 Update 45Script error: No such module "Unsubst". | 2013-10-15 | 51 security fixes;[55] protections against unauthorized redistribution of Java applications; restore security prompts; JAXP changes; TimeZone.setDefault change |
| Java SE 7 Update 51Script error: No such module "Unsubst". | 2014-01-14 | 36 security fixes; block JAVA applets without manifest (like Remote console—Java Applet—IBM IMM card, HP iLO card) even if warning dialog is with sentence "will be blocked in next version",[113][114] 17 bug fixes |
| Java SE 7 Update 55Script error: No such module "Unsubst". | 2014-04-15 | 37 security fixes,[56] 19 bug fixes[115] |
| Java SE 7 Update 60Script error: No such module "Unsubst". | 2014-05-28 | Java Mission Control 5.3,[116] 130 bug fixes[117] |
| Java SE 7 Update 65Script error: No such module "Unsubst". | 2014-07-15 | 18 bug fixesScript error: No such module "Unsubst". |
| Java SE 7 Update 67Script error: No such module "Unsubst". | 2014-08-04 | 1 bug fix |
| Java SE 7 Update 71Script error: No such module "Unsubst". | 2014-10-14 | 16 bug fixesScript error: No such module "Unsubst". |
| Java SE 7 Update 72Script error: No such module "Unsubst". | 2014-10-14 | Same release date with Update 71 as a corresponding Patch Set Update (PSU) for Java SE 7,[118] 36 bug fixesScript error: No such module "Unsubst". |
| Java SE 7 Update 75Script error: No such module "Unsubst". | 2015-01-20 | 12 bug fixes,Script error: No such module "Unsubst". SSLv3 disabled by default |
| Java SE 7 Update 76Script error: No such module "Unsubst". | 2015-01-20 | Same release date with Update 75 as a corresponding Patch Set Update (PSU) for Java SE 7,[118] 97 bug fixesScript error: No such module "Unsubst". |
| Java SE 7 Update 79Script error: No such module "Unsubst". | 2015-04-14 | 21 security fixes, 6 bug fixes,Script error: No such module "Unsubst". |
| Java SE 7 Update 80Script error: No such module "Unsubst". | 2015-04-14 | Last public release of Java 7; same release date with Update 79 as a corresponding Patch Set Update (PSU) for Java SE 7, 104 bug fixesScript error: No such module "Unsubst". |
| Java SE 7 Update 85 | 2015-07-15 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 25 security fixes[119] |
| Java SE 7 Update 91 | 2015-10-20 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 20 security fixes[120] |
| Java SE 7 Update 95 | 2016-01-19 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 8 security fixes[121] |
| Java SE 7 Update 97 | 2016-02-05 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 1 security fix[65] |
| Java SE 7 Update 99 | 2016-03-23 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 1 security fix[122] |
| Java SE 7 Update 101 | 2016-04-18 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 22 security fixes[123] |
| Java SE 7 Update 111 | 2016-07-19 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 36 security fixes[67] |
| Java SE 7 Update 121 | 2016-10-18 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 32 security fixes[68] |
| Java SE 7 Update 131 | 2017-01-17 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 34 security fixes[69] |
| Java SE 7 Update 141 | 2017-04-18 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 8 security fixes[124] |
| Java SE 7 Update 151 | 2017-07-18 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 4 security fixes[71] |
| Java SE 7 Update 161 | 2017-10-20 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 4 security fixes[72] |
| Java SE 7 Update 171 | 2018-01-16 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 51 security fixes[73] |
| Java SE 7 Update 181 | 2018-04-17 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 12 security fixes[74] |
| Java SE 7 Update 191 | 2018-07-17 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 9 security fixes[75] |
| Java SE 7 Update 201 | 2018-10-18 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 13 security fixes[76] |
| Java SE 7 Update 211 | 2019-01-15 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 5 security fixes[125] |
| Java SE 7 Update 221 | 2019-04-16 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 5 security fixes[126] |
| Java SE 7 Update 231 | 2019-07-16 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 6 security fixes[127] |
| Java SE 7 Update 241 | 2019-10-15 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 15 security fixes[128] |
| Java SE 7 Update 251 | 2020-01-14 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 12 security fixes[129] |
| Java SE 7 Update 261 | 2020-04-14 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 15 security fixes[130] |
| Java SE 7 Update 271 | 2020-07-14 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 11 security fixes[131] |
| Java SE 7 Update 281 | 2020-10-20 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 8 security fixes[132] |
| Java SE 7 Update 291 | 2021-01-19 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 1 security fixes[133] |
| Java SE 7 Update 301 | 2021-04-12 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 11 security fixes[134] |
| Java SE 7 Update 311 | 2021-07-20 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 24 bug fixes[135] |
| Java SE 7 Update 321 | 2021-10-19 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 16 bug fixes[136] |
| Java SE 7 Update 331 | 2022-01-18 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 18 bug fixes[137] |
Script error: No such module "anchor".
Java SE 8 (LTS)
Template:Infobox Java version Java 8 was released on 18 March 2014,[138][139] and included some features that were planned for Java 7 but later deferred.[140]
Work on features was organized in terms of JDK Enhancement Proposals (JEPs).[141]
- JSR 335, JEP 126: Language-level support for lambda expressions (officially, lambda expressions; unofficially, closures) under Project Lambda[142] and default methods (virtual extension methods)[143][144][145] which can be used to add methods to interfaces without breaking existing implementations. There was an ongoing debate in the Java community on whether to add support for lambda expressions.[146][147] Sun later declared that lambda expressions would be included in Java and asked for community input to refine the feature.[148] Supporting lambda expressions also enables functional-style operations on streams of elements, such as MapReduce-inspired transformations on collections. Default methods can be used by an author of an API to add new methods to an interface without breaking the old code using it. Although it was not their primary intent,[143] default methods can also be used for multiple inheritance of behavior (but not state).
- Template:Java JEP, a JavaScript runtime which can run JavaScript code embedded within applications
- Template:Java JEP
- Unsigned integer arithmetic[149]
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP (direct launching of JavaFX application JARs)
- Template:Java JEP
Java 8 is not supported on Windows XP[150] but as of JDK 8 update 25, it can still be installed and run under Windows XP.[151] Previous updates of JDK 8 could be run under XP by downloading archived zip format file and unzipping it for the executable. The last version of Java 8 could run on XP is update 251.
From October 2014, Java 8 was the default version to download (and then again the download replacing Java 9) from the official website.[152] "Oracle will continue to provide Public Updates and auto updates of Java SE 8, Indefinitely for Personal Users".[153]
Java 8 updates
| Release | Release date | Highlights |
|---|---|---|
| Java SE 8 | 2014-03-18 | Initial release |
| Java SE 8 Update 5[154] | 2014-04-15 | Using "*" in Caller-Allowable-Codebase attribute; 11 bug fixes
|
| Java SE 8 Update 11[155] | 2014-07-15 | Java Dependency Analysis Tool (jdeps); Java Control Panel option to disable sponsors; JAR file attribute – Entry-Point; JAXP processing limit property – maxElementDepth; 18 security bug fixes,[156] 15 bug fixes |
| Java SE 8 Update 20[157] | 2014-08-19 | 669 bug fixes,[158] JMC 5.4, String deduplication (disabled by default) |
| Java SE 8 Update 25[159] | 2014-10-14 | 10 bug fixes |
| Java SE 8 Update 31[160] | 2015-01-19 | 26 bug fixes; SSLv3 (disabled by default) |
| Java SE 8 Update 40[161] | 2015-03-03 | 645 bug fixes,[162] Added the notion of "memory pressure" to help indicate how much of system's memory is still available (low pressure = high memory, high pressure = low memory) |
| Java SE 8 Update 45[163] | 2015-04-14 | 13 bug fixes |
| Java SE 8 Update 51[164] | 2015-07-14 | Added support for native sandbox on Windows platforms (disabled by default); also, 25 security fixes, 14 bug fixes |
| Java SE 8 Update 60[165] | 2015-08-18 | 480 bug fixes[166] |
| Java SE 8 Update 65[167] | 2015-10-20 | 25 security fixes, 3 bug fixes |
| Java SE 8 Update 66[168] | 2015-11-16 | 15 bug fixes |
| Java SE 8 Update 71[169] | 2016-01-19 | 8 security fixes, 5 bug fixes[170] |
| Java SE 8 Update 72[171] | 2016-01-19 | 8 security fixes, 5 bug fixes, several enhancements |
| Java SE 8 Update 73[172] | 2016-02-03 | 1 security fix |
| Java SE 8 Update 74[173] | 2016-02-03 | 1 security fix |
| Java SE 8 Update 77[174] | 2016-03-23 | 1 security fix |
| Java SE 8 Update 91[175] | 2016-04-19 | 9 security fixes, 4 bug fixes and enhancements |
| Java SE 8 Update 92[176] | 2016-04-19 | Security and bug fixes from 8u91, plus 76 additional bug fixes; the ExitOnOutOfMemoryError and CrashOnOutOfMemoryError flags have been introduced
|
| Java SE 8 Update 101[177] | 2016-07-19 | Security and bug fixes from 8u92, plus 9 additional bug fixes |
| Java SE 8 Update 102[178] | 2016-07-19 | Security and bug fixes from 8u101, plus 118 additional bug fixes |
| Java SE 8 Update 111[179] | 2016-10-18 | 7 Security fixes and 9 bug fixes |
| Java SE 8 Update 112[180] | 2016-10-18 | Additional features and 139 bug fixes over 8u111 |
| Java SE 8 Update 121[181] | 2017-01-17 | 3 additional features, 5 changes, and 11 bug fixes over 8u112. |
| Java SE 8 Update 131[182] | 2017-04-18 | 4 changes and 42 bug fixes (2 notable). |
| Java SE 8 Update 141[183] | 2017-07-18 | Additional feature, 3 changes and 12 bug fixes. |
| Java SE 8 Update 144[184] | 2017-07-26 | 32 Security fixes and bug fixes from 8u141. |
| Java SE 8 Update 151[185] | 2017-10-17 | 22 Security fixes, 2 notes, 1 certificate revocation, 1 new feature, 6 changes and 24 bug fixes from 8u144. |
| Java SE 8 Update 152[186] | 2017-10-17 | Security fixes, 1 new feature, 1 change and 238 bug fixes from 8u151 (1 notable). |
| Java SE 8 Update 161[187] | 2018-01-16 | 21 Security fixes, 3 new features, 9 changes and 1 bug fix from 8u152. |
| Java SE 8 Update 162[188] | 2018-01-16 | Security fixes, 63 bug fixes. |
| Java SE 8 Update 171[189] | 2018-04-17 | Security fixes, bug fixes. |
| Java SE 8 Update 172[190] | 2018-04-17 | Security fixes, bug fixes. |
| Java SE 8 Update 181[191] | 2018-07-17 | Security fixes, bug fixes. |
| Java SE 8 Update 191[192] | 2018-10-16 | New features, changes, bug fixes, security fixes. |
| Java SE 8 Update 192[193] | 2018-10-16 | New features, changes, bug fixes. |
| Java SE 8 Update 201[194] | 2019-01-15 | New features, changes, bug fixes. |
| Java SE 8 Update 202[195] | 2019-01-15 | New features, changes, bug fixes. |
| Java SE 8 Update 211[196] | 2019-04-16 | New features, changes, bug fixes. License Update. |
| Java SE 8 Update 212[197] | 2019-04-16 | New features (e.g. 5 currency symbols, including for Bitcoin and "New Japanese Era Name Reiwa"[197]), changes, bug fixes. License Update. |
| Java SE 8 Update 221[198] | 2019-07-16 | New features, changes, bug fixes. |
| Java SE 8 Update 231[199] | 2019-10-15 | New features, changes, bug fixes and 18 security fixes. |
| Java SE 8 Update 241[200] | 2020-01-14 | New features, changes, bug fixes. |
| Java SE 8 Update 251[201] | 2020-04-14 | New features, changes, bug fixes. The last version that was shown to be working on Windows XP unofficially. |
| Java SE 8 Update 261[202] | 2020-07-14 | New features, changes, 133 bug fixes.[203] |
| Java SE 8 Update 271[204] | 2020-10-20 | New features, changes, 65 bug fixes.[205] |
| Java SE 8 Update 281[206] | 2021-01-19 | New features, changes, 33 bug fixes.[207] |
| Java SE 8 Update 291[208] | 2021-04-20 | New features, changes, 28 bug fixes.[209] |
| Java SE 8 Update 301[210] | 2021-07-20 | New features, changes, 90 bug fixes.[211] |
| Java SE 8 Update 311[212] | 2021-10-19 | New features, changes, 52 bug fixes.[213] |
| Java SE 8 Update 321[214] | 2022-01-18 | New features, changes, 62 bug fixes.[215] |
| Java SE 8 Update 331[216] | 2022-04-19 | New features, changes, 37 bug fixes.[217] |
| Java SE 8 Update 333[218] | 2022-05-02 | Patch w/1 change and 2 bug fixes.[219] |
| Java SE 8 Update 341[220] | 2022-07-19 | New features, changes, 42 bug fixes.[221] |
| Java SE 8 Update 351[222] | 2022-10-18 | New features, changes, 95 bug fixes.[223] |
| Java SE 8 Update 361[224] | 2023-01-17 | New features, changes, bug fixes. |
| Java SE 8 Update 371[225] | 2023-04-18 | |
| Java SE 8 Update 381[226] | 2023-07-18 | Security Patches |
| Java SE 8 Update 391[227] | 2023-10-17 | |
| Java SE 8 Update 401[228] | 2024-01-16 | |
| Java SE 8 Update 411[229] | 2024-04-16 | Update time zone data to IANA TZ Data 2024a, new features, changes, updates to third-party libraries, 37 bug fixes.[229] |
| Java SE 8 Update 421[230] | 2024-07-16 | |
| Java SE 8 Update 431[231] | 2024-10-15 | |
| Java SE 8 Update 441[232] | 2025-01-21 | |
| Java SE 8 Update 451[233] | 2025-04-15 |
Script error: No such module "anchor".
Java SE 9
Template:Infobox Java version Java SE 9 was made available on September 21, 2017[234] due to controversial acceptance of the current implementation of Project Jigsaw by Java Executive Committee[235] which led Oracle to fix some open issues and concerns and to refine some critical technical questions. In the last days of June 2017, Java Community Process expressed nearly unanimous consensus on the proposed Module System scheme.[236]
- JSR 376: Modularization of the JDK under Project Jigsaw (Java Platform Module System)[98]
- JavaDB was removed from JDK[237]
- Template:Java JEP, define a standard means to invoke the equivalents of various
java.util.concurrent.atomicandsun.misc.Unsafeoperations - Template:Java JEP, allow @SafeVarargs on private instance methods; Allow effectively-final variables to be used as resources in the try-with-resources statement; Allow diamond with anonymous classes if the argument type of the inferred type is denotable; Complete the removal, begun in Java SE 8, of underscore from the set of legal identifier names; Support for private methods in interfaces
- Template:Java JEP: JShell is a REPL command-line interface for the Java language.[238]
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP, it includes a Java implementation of Reactive Streams,[239] including a new
Flowclass[240] that included the interfaces previously provided by Reactive Streams[241] - Template:Java JEP
- Template:Java JEP, create a tool that can assemble and optimize a set of modules and their dependencies into a custom run-time image. It effectively allows to produce a fully usable executable including the JVM to run it
- Template:Java JEP, ahead-of-time compilation provided by GraalVM
The first Java 9 release candidate was released on August 9, 2017.[242] The first stable release of Java 9 was on September 21, 2017.[243]
History
At JavaOne 2011, Oracle discussed features they hoped to release for Java 9 in 2016.[244] Java 9 should include better support for multi-gigabyte heaps, better native code integration, a different default garbage collector (G1, for "shorter response times")[245] and a self-tuning JVM.[246] In early 2016, the release of Java 9 was rescheduled for March 2017[247] and later again postponed four more months to July 2017.[248]
Java 9 updates
| Release | Release date | Highlights |
|---|---|---|
| Java SE 9[249] | 2017-09-21 | Initial release |
| Java SE 9.0.1[250] | 2017-10-17 | New features
Known issues
Changes
Other notes
Bug fixes
|
| Java SE 9.0.4[252] | 2018-01-16 | New features
Changes
Bug fixes
|
Script error: No such module "anchor".
Java SE 10
Template:Infobox Java version OpenJDK 10 was released on March 20, 2018, with twelve new features confirmed.[254] Among these features were:
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
The first of these JEP 286 Local-Variable Type Inference, allows the var keyword to be used for local variables with the actual type calculated by the compiler. Due to this change, developers can do the following instead of manually specifying the variable's type:
var list = new ArrayList<String>(); // infers ArrayList<String>
var stream = list.stream(); // infers Stream<String>
Java 10 updates
| Release | Release date | Highlights |
|---|---|---|
| Java SE 10[255] | 2018-03-20 | Initial release |
| Java SE 10.0.1[256] | 2018-04-17 | New features
Changes
Other notes
Bug fixes
|
| Java SE 10.0.2[258] | 2018-07-17 | Changes
Bug fixes
|
Script error: No such module "anchor".
Java SE 11 (LTS)
Template:Infobox Java version JDK 11 was released on September 25, 2018 and the version is currently open for bug fixes. It offers LTS, or Long-Term Support. Among others, Java 11 includes a number of new features, such as:[260]
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
A number of features from previous releases were dropped; in particular, Java applets and Java Web Start are no longer available. JavaFX, Java EE and CORBA modules have been removed from JDK.[261]
Java 11 updates
| Release | Release date | Highlights |
|---|---|---|
| Java SE 11[262] | 2018-09-25 | Initial release |
| Java SE 11.0.1[263] | 2018-10-16 | Changes
Bug fixes
|
| Java SE 11.0.2[265] | 2019-01-15 | Known issues
Changes
Bug fixes
|
| Java SE 11.0.3[267] | 2019-04-16 | New features
Known issues
Changes
Bug fixes
|
| Java SE 11.0.4[269] | 2019-07-16 | New features
Removed features and options
Other notes
Bug fixes
|
| Java SE 11.0.5[271] | 2019-10-15 | New features
Other notes
Bug fixes
|
| Java SE 11.0.6[273] | 2020-01-14 | New features
Other notes
Bug fixes
|
| Java SE 11.0.7[275] | 2020-04-14 | New features
Bug fixes
|
| Java SE 11.0.8[277] | 2020-07-14 | New features
Removed features and options
Other notes
Bug fixes
|
| Java SE 11.0.9[279] | 2020-10-20 | New features
Other notes
Bug fixes
|
| Java SE 11.0.10[281] | 2021-01-19 | New features
Other notes
Bug fixes
|
| Java SE 11.0.11[283] | 2021-04-20 | New features
Other notes
Bug fixes
|
| Java SE 11.0.12[285] | 2021-07-20 | New features
Removed features and options
Other notes
Bug fixes
|
| Java SE 11.0.13[287] | 2021-10-19 | New features
Removed features and options
Other notes
Bug fixes
|
| Java SE 11.0.14[289] | 2022-01-18 | New features
Removed features and options
Other notes
Bug fixes
|
| Java SE 11.0.15[291] | 2022-04-19 | New features
Other notes
Bug fixes
|
| Java SE 11.0.16[293] | 2022-07-19 | New features
Other notes
Bug fixes
|
| Java SE 11.0.16.1[295] | 2022-08-18 | Changes
|
| Java SE 11.0.17[296] | 2022-10-18 | New features
Other notes
Bug fixes
|
| Java SE 11.0.18[298] | 2023-01-17 | New features
Known issues
Other notes
Bug fixes
|
| Java SE 11.0.19[300] | 2023-04-18 | New features
Other notes
Bug fixes
|
| Java SE 11.0.20[302] | 2023-07-18 | New features
Known issues
Other notes
Bug fixes
|
| Java SE 11.0.21[304] | 2023-10-17 | New features
Removed features and options
Other notes
Bug fixes
|
| Java SE 11.0.22[306] | 2024-01-16 | New features
Known issues
Other notes
Bug fixes
|
Script error: No such module "anchor".
Java SE 12
Template:Infobox Java version JDK 12 was released on March 19, 2019. Among others, Java 12 includes a number of new features, such as:[308]
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
The preview feature JEP 325 extends the switch statement so it can also be used as an expression, and adds a new form of case label where the right hand side is an expression. No break statement is needed. For complex expressions a yield statement can be used. This becomes standard in Java SE 14.
int ndays = switch(month) {
case JAN, MAR, MAY, JUL, AUG, OCT, DEC -> 31;
case APR, JUN, SEP, NOV -> 30;
case FEB -> {
if (year % 400 == 0) yield 29;
else if (year % 100 == 0) yield 28;
else if (year % 4 == 0) yield 29;
else yield 28; }
};
Java 12 updates
| Release | Release date | Highlights |
|---|---|---|
| Java SE 12[309] | 2019-03-19 | Initial release |
| Java SE 12.0.1[310] | 2019-04-16 | Known issues
Changes
Bug fixes
|
| Java SE 12.0.2[312] | 2019-07-16 | Removed features and options
Other notes
|
Script error: No such module "anchor".
Java SE 13
Template:Infobox Java version JDK 13 was released on September 17, 2019. Java 13 includes the following new features, as well as "hundreds of smaller enhancements and thousands of bug fixes".[313]
JEP 355 Text Blocks allows multiline string literals:
String html = """
<html lang="en">
<body>
<p>Hello, world</p>
</body>
</html>
""";
Java 13 updates
| Release | Release date | Highlights |
|---|---|---|
| Java SE 13[314] | 2019-09-17 | Initial release |
| Java SE 13.0.1[315] | 2019-10-15 | Other notes
|
| Java SE 13.0.2[316] | 2020-01-14 | Other notes
Bug fixes
|
Script error: No such module "anchor".
Java SE 14
Template:Infobox Java version JDK 14 was released on March 17, 2020. Java 14 includes the following new features, as well as "hundreds of smaller enhancements and thousands of bug fixes".[318]
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
JEP 305, Pattern Matching for instanceof simplifies the common case of an instanceof test being immediately followed by cast, replacing
if (obj instanceof String) {
String s = (String)obj;
System.out.println(s.length());
}
with
if (obj instanceof String s) {
System.out.println(s.length());
}
JEP 359 Records allows easy creation of simple immutable Tuple-like classes.[319]
record Point(int x, int y) { }
Point p = new Point(3, 4);
System.out.println(p.x());
Java 14 updates
| Release | Release date | Highlights |
|---|---|---|
| Java SE 14[320] | 2020-03-17 | Initial release |
| Java SE 14.0.1[321] | 2020-04-14 | Bug fixes
|
| Java SE 14.0.2[323] | 2020-07-14 | Removed features and options
Other notes
Bug fixes
|
Script error: No such module "anchor".
Java SE 15
JDK 15 was released on September 15, 2020. Java 15 adds e.g. support for multi-line string literals (aka Text Blocks). The Shenandoah and Z garbage collectors (latter sometimes abbreviated ZGC) are now ready for use in production (i.e. no longer marked experimental). Support for Oracle's Solaris operating system (and SPARC CPUs) is dropped (while still available in e.g. Java 11). The Nashorn JavaScript Engine is removed. Also removed some root CA certificates.
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
JEP 360 Sealed Classes adds sealed classes and interfaces that restrict which other classes or interfaces may extend or implement them. Only those classes specified in a permits clause may extend the class or interface.
package com.example.geometry;
public abstract sealed class Shape
permits Circle, Rectangle, Square {...}
Together with records, sealed classes are sum types. They work well with other recent features like records, switch expressions, and pattern matching for instance-of. They all form part of a system for "Pattern matching in Java" first discussed by Gavin Bierman and Brian Goetz, in September 2018.[325]
Java 15 updates
| Release | Release date | Highlights |
|---|---|---|
| Java SE 15[326] | 2020-09-15 | Initial release |
| Java SE 15.0.1[327] | 2020-10-20 | New features
Other notes
Bug fixes
|
| Java SE 15.0.2[329] | 2021-01-19 | Other notes
Bug fixes
|
Script error: No such module "anchor".
Java SE 16
JDK 16 was released on March 16, 2021. Java 16 removes Ahead-of-Time compilation (and Graal JIT) options.[331] The Java implementation itself was and is still written in C++, while as of Java 16, more recent C++14 (but still not e.g. C++17 or C++20) is allowed. The code was also moved to GitHub, dropping Mercurial as the source control system.
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP — not yet stable
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
Java 16 updates
| Release | Release date | Highlights |
|---|---|---|
| Java SE 16[332] | 2021-03-16 | Initial release |
| Java SE 16.0.1[333] | 2021-04-20 | Other notes
Bug fixes
|
| Java SE 16.0.2[335] | 2021-07-20 | Removed features and options
Other notes
Bug fixes
|
Script error: No such module "anchor".
Java SE 17 (LTS)
Template:Infobox Java version JDK 17 was released in September 2021.[337] Java 17 is the 2nd long-term support (LTS) release since switching to the new 6-month release cadence (the first being Java 11).
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
JEP 406 extends the pattern matching syntax used in instanceof operations to switch statements and expressions. It allows cases to be selected based on the type of the argument, null cases and refining patterns
Object o = ...;
return switch (o) {
case null -> "Null";
case String s -> "String %s".formatted(s);
case Long l -> "long %d".formatted(l);
case Double d -> "double %f".formatted(d);
case Integer i && i > 0 // refining patterns
-> "positive int %d".formatted(i);
case Integer i && i == 0
-> "zero int %d".formatted(i);
case Integer i && i < 0
-> "negative int %d".formatted(i);
default -> o.toString();
};
Java 17 updates
| Release | Release date | Highlights |
|---|---|---|
| Java SE 17[338] | 2021-09-14 | Initial release |
| Java SE 17.0.1[339] | 2021-10-19 | Removed features and options
Other notes
Bug fixes
|
| Java SE 17.0.2[341] | 2022-01-18 | Removed features and options
Other notes
Bug fixes
|
| Java SE 17.0.3[343] | 2022-04-19 | New features
Other notes
Bug fixes
|
| Java SE 17.0.3.1[345] | 2022-05-02 | Changes
Bug fixes
|
| Java SE 17.0.4[347] | 2022-07-19 | New features
Other notes
Bug fixes
|
| Java SE 17.0.4.1[349] | 2022-08-18 | Changes
|
| Java SE 17.0.5[350] | 2022-10-18 | New features
Other notes
Bug fixes
|
| Java SE 17.0.6[352] | 2023-01-17 | New features
Known issues
Other notes
Bug fixes
|
| Java SE 17.0.7[354] | 2023-04-18 | New features
Other notes
Bug fixes
|
| Java SE 17.0.8[356] | 2023-07-18 | New features
Known issues
Other notes
Bug fixes
|
| Java SE 17.0.9[358] | 2023-10-17 | New features
Removed features and options
Other notes
Bug fixes
|
| Java SE 17.0.10[360] | 2024-01-16 | New features
Known issues
Other notes
Bug fixes
|
| Java SE 17.0.11[362] | 2024-04-16 | |
| Java SE 17.0.12[363] | 2024-07-16 | |
| Java SE 17.0.13[364] | 2024-10-15 | |
| Java SE 17.0.14[365] | 2025-01-21 | |
| Java SE 17.0.15[366] | 2025-04-15 |
Script error: No such module "anchor".
Java SE 18
Template:Infobox Java version JDK 18 was released on March 22, 2022.[367]
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
Java 18 updates
| Release | Release date | Highlights |
|---|---|---|
| Java SE 18[368] | 2022-03-22 | Initial release |
| Java SE 18.0.1[369] | 2022-04-19 | New features
Other notes
Bug fixes
|
| Java SE 18.0.1.1[371] | 2022-05-02 | core-libs/java.io
Bug fixes
|
| Java SE 18.0.2[373] | 2022-07-19 | Removed features and options
Other notes
Bug fixes
|
| Java SE 18.0.2.1[375] | 2022-08-18 | Changes
|
Script error: No such module "anchor".
Java SE 19
JDK 19 was released on 20 September 2022.[376]
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
JEP 405 allows record patterns, extending the pattern matching capabilities of instanceof operators, and switch expressions, to include record patterns that explicitly refer to the components of the record.
record Rectangle(int x, int y, int w, int h) {}
int area(Object o) {
if (o instanceof Rectangle(int x, int y, int w, int h)) {
return w * h;
}
return 0;
}
Such patterns can include nested patterns, where the components of records are themselves records, allowing patterns to match more object graphs.
Java 19 updates
| Release | Release date | Highlights |
|---|---|---|
| Java SE 19[377] | 2022-09-20 | Initial release |
| Java SE 19.0.1[378] | 2022-10-18 | Other notes
Bug fixes
|
| Java SE 19.0.2[380] | 2023-01-17 | New features
Other notes
Bug fixes
|
Script error: No such module "anchor".
Java SE 20
Java 20 was released on 21 March 2023.[382] All JEPs were either incubators or previews.
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
Java 20 updates
| Release | Release date | Highlights |
|---|---|---|
| Java SE 20[383] | 2023-03-21 | Initial release |
| Java SE 20.0.1[384] | 2023-04-18 | Other notes
Bug fixes
|
| Java SE 20.0.2[386] | 2023-07-18 | New features
Known issues
Other notes
Bug fixes
|
Script error: No such module "anchor".
Java SE 21 (LTS)
Java 21 was released on 19 September 2023.[388] The 32-bit version of Java for Windows on x86 was deprecated for removal with this release. The following JEPs were added, including eight JEPs that graduated from the incubating and preview stages, compared to Java 20 which only had previewing and incubating JEPs. Java 21 introduces features first previewed in Java 17 (pattern matching for switch statements) and Java 19 (record patterns). All JEPs added with Java 21 include the following:
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
JEP 445, previewing unnamed classes, allows for a barebones Main class without boilerplate code:
void main() {
System.out.println("Hello, World!");
}
instead of :
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}
Java 21 updates
| Release | Release date | Highlights |
|---|---|---|
| Java SE 21[389] | 2023-09-19 | Initial release |
| Java SE 21.0.1[390] | 2023-10-17 | Other notes
Bug fixes
|
| Java SE 21.0.2[392] | 2024-01-16 | New features
Known issues
Issues fixed
Other notes
Bug fixes
|
| Java SE 21.0.3[394] | 2024-04-16 | New features
Known issues
Other notes
Updates to Third Party Libraries
Bug fixes
|
| Java SE 21.0.4[396] | 2024-07-16 | |
| Java SE 21.0.5[397] | 2024-10-15 | |
| Java SE 21.0.6[398] | 2025-01-21 | |
| Java SE 21.0.7[399] | 2025-04-15 |
Script error: No such module "anchor".
Java SE 22
Java 22 was released on March 19, 2024.[400][401] The following features, or JEPs, were added with this release:
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
An API related to Java's threading implementation, java.lang.Thread.countStackFrames, was removed.[3][402]
Script error: No such module "anchor".
Java SE 23
Java 23 was released on September 17, 2024,[403][404][405] with the following JEPs:
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
The String Templates preview feature was removed in Java 23 due to issues with the design of the feature.[406]
Script error: No such module "anchor".
Java SE 24
The specification for Java 24 was finalized in December 2024, with 24 JEPs making it into the release and it was released on 18 March 2025.[407]
The following JEPs were targeted to this version of Java SE:[408]
- Template:Java JEP
- Template:Java JEP (formerly known as Project Lilliput)
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
- Template:Java JEP
Script error: No such module "anchor".
Java SE 25 (LTS)
since December 2024[update]Template:Dated maintenance category (articles)Script error: No such module "Check for unknown parameters"., the specification for Java 25 has not yet been finalized. Java 25 is scheduled for release in September 2025.[409]
Future features
- Project Valhalla: Value classes, whose objects lack identity, but can in certain cases get an improved memory layout (with less indirection), or have their allocation optimized away entirely.
- Project Panama:
- Improved interoperability with native code, to enable Java source code to call functions and use data types from other languages, in a way that is easier and has better performance than today (this part of Project Panama is getting stabilized in Java 22 under JEP 454: Foreign Function & Memory API).
- Vector API, a portable and relatively low-level abstraction layer for SIMD programming. Its stabilization is dependent on Project Valhalla.
- Project Lilliput: Reduce the size of Java object headers. First down to 64 bits, and then down to 32 bits.
- Reducing startup time and warm-up time (time to peak performance) in JIT mode:
- Project CRaC enables making snapshots of whole JVM (together with the running application) and restoring it with necessary adjustments (reopening files, sockets, etc).
- Project Leyden, among other things, will allow partial or (in the long term) full AOT compiling, reducing overall dynamism (by adopting so called "closed-world constraints") to reduce dynamic compiling overhead.
- Project Babylon aims to extend the Java language's reach to alternative programming models with an enhancement to its reflective programming abilities, called code reflection (i.e., reflection over code itself). The stated main goal is to run Java code on GPUs, with SQL and other programming models as secondary targets.
Implementations
The officially supported Java platform, first developed at Sun and now stewarded by Oracle, is Java SE. Releases are based on the OpenJDK project, a free and open-source project with an open development model. Other Java implementations exist, however—in part due to Java's early history as proprietary software. In contrast, some implementations were created to offer some benefits over the standard implementation, often the result of some area of academic or corporate-sponsored research. Many Linux distributions include builds of OpenJDK through the IcedTea project started by Red Hat, which provides a more straightforward build and integration environment.
Visual J++ and the Microsoft Java Virtual Machine were created as incompatible implementations. After the Sun v. Microsoft lawsuit, Microsoft abandoned it and began work on the .NET platform. In 2021, Microsoft started distributing compatible "Microsoft Build of OpenJDK" for Java 11 first then also for Java 17. Their builds support not only Windows, but also Linux and macOS.
Other proprietary Java implementations are available, such as Azul's Zing. Azul offers certified open source OpenJDK builds under the Zulu moniker.
Prior to the release of OpenJDK, while Sun's implementation was still proprietary, the GNU Classpath project was created to provide a free and open-source implementation of the Java platform. Since the release of JDK 7, when OpenJDK became the official reference implementation, the original motivation for the GNU Classpath project almost completely disappeared, and its last release was in 2012.
The Apache Harmony project was started shortly before the release of OpenJDK. After Sun's initial source code release, the Harmony project continued, working to provide an implementation under a lax license, in contrast to the protective license chosen for OpenJDK. Google later developed Android and released it under a lax license. Android incorporated parts of the Harmony project, supplemented with Google's own Dalvik virtual machine and ART. Apache Harmony has since been retired, and Google has switched its Harmony components with equivalent ones from OpenJDK.
Both Jikes and Jikes RVM are open-source research projects that IBM developed.
Several other implementations exist that started as proprietary software, but are now open source. IBM initially developed OpenJ9 as the proprietary J9,[410] but has since relicensed the project and donated it to the Eclipse Foundation. JRockit is a proprietary implementation that was acquired by Oracle and incorporated into subsequent OpenJDK versions.
References
<templatestyles src="Reflist/styles.css" />
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ a b Script error: No such module "citation/CS1".
- ↑ a b c Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ a b Script error: No such module "citation/CS1".
- ↑ Version 1.1 press release, Sun.
- ↑ Script error: No such module "citation/CS1".
- ↑ Version 1.2 press release, Sun.
- ↑ Version 1.3 press release, Sun.
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Version 1.4 press release.
- ↑ Script error: No such module "citation/CS1".
- ↑ a b Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Version 1.5 press release.
- ↑ Version 1.5 full list of changes.
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Java brand naming.
- ↑ Version 6, Java webnotes, Sun.
- ↑ Version 1.6 press release.
- ↑ Version 1.6 full list of changes.
- ↑ Java LobbyTemplate:Category handler[<span title="Script error: No such module "string".">usurped]Script error: No such module "Check for unknown parameters"..
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ a b c Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ a b Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ a b Script error: No such module "citation/CS1".
- ↑ a b Script error: No such module "citation/CS1".
- ↑ a b Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ a b Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ a b Script error: No such module "citation/CS1".
- ↑ a b Script error: No such module "citation/CS1".
- ↑ a b Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ a b Script error: No such module "citation/CS1".
- ↑ a b Script error: No such module "citation/CS1".
- ↑ a b Script error: No such module "citation/CS1".
- ↑ a b Script error: No such module "citation/CS1".
- ↑ a b Script error: No such module "citation/CS1".
- ↑ a b Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ a b Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ a b Script error: No such module "citation/CS1".
Script error: No such module "citation/CS1".
Script error: No such module "citation/CS1". - ↑ Script error: No such module "citation/CS1".
- ↑ Critical Patch Update table shows four dates per year
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Oracle to patch Java, other products Tuesday, ZDNet,
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ a b Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ a b Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ a b Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ a b Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Reactive Streams Releases First Stable Version for JVM
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
Script error: No such module "citation/CS1". - ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
Cite error: <ref> tag with name "ibmjdk" defined in <references> is not used in prior text.
Cite error: <ref> tag with name "semeru" defined in <references> is not used in prior text.
Cite error: <ref> tag with name "azul" defined in <references> is not used in prior text.
Cite error: <ref> tag with name "corretto" defined in <references> is not used in prior text.
Cite error: <ref> tag with name "redhat" defined in <references> is not used in prior text.
Cite error: <ref> tag with name "liberica" defined in <references> is not used in prior text.
<ref> tag with name "temurin" defined in <references> is not used in prior text.Script error: No such module "Check for unknown parameters".
External links
- Official Java SE Downloads
- Sun Java Supported versions and EOL
- Downloads archive for older version of Java
- JDK Releases
- The Java Version Almanac
Script error: No such module "Navbox".