Java_version_history

Java version history

Java version history

List of versions of the Java programming language


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 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 Java SE Support Roadmap,[4] version 22 is the latest one, and versions 21, 17, 11 and 8 are the currently 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. Oracle also continues to release no-cost public Java 17 LTS updates for all users, including commercial and production use until September 2024.[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 22 was released on March 19, 2024.

Release table

More information Version, Class File Format Version ...

JDK 1.0

Quick Facts Released ...

The first version was released on January 23, 1996.[15][16] The first stable version, JDK 1.0.2, is called Java 1.[16]

JDK 1.1

Quick Facts Released ...

Major additions in the release on February 19, 1997 included:[17]

J2SE 1.2

Quick Facts Codename, Released ...

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:[19]

J2SE 1.3

Quick Facts Codename, Released ...

The most notable changes in the May 8, 2000 release were:[20][21]

Java 1.3 is the last release of Java to officially support Microsoft Windows 95.[22]

J2SE 1.4

Quick Facts Codename, Released ...

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:[23][24]

Public support and security updates for Java 1.4 ended in October 2008. Paid security updates for Oracle customers ended in February 2013.[25]

Java SE 5

Quick Facts Codename, Released ...

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".[26] 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:[27][28]

  • 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 as Integer) (specified by JSR 201)
  • Enumerations: the enum keyword creates a typesafe, ordered list of values (such as Day.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 each loop: the for loop syntax is extended with special syntax for iterating over each member of either an array or any Iterable, such as the standard Collection classes (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[29]
  • Static imports

There were also the following improvements to the standard libraries:

Java 5 is the last release of Java to officially support Microsoft Windows 98 and Windows ME,[31] 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 of 2009.[25]

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.[32]

Java 5 was first available on Apple Mac OS X 10.4 (Tiger)[33] 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:

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.

"Version 1.5.0 or 5.0?", Java release notes[34]

This correspondence continued through later releases (Java 6 = JDK 1.6, Java 7 = JDK 1.7, and so on).

Java SE 6

Quick Facts Codename, Released ...

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.[35] Internal numbering for developers remains 1.6.0.[36]

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:[37][38]

  • 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.[citation needed] This is believed[by whom?] 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,[39][40] 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).[41]
  • 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.[42] 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.[43][44] Oracle released two more updates to Java 6 in March and April 2013, which patched some security vulnerabilities.[45][46]

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.[47]

More information Release, Release date ...

Java SE 7

Quick Facts Codename, Released ...

Java 7 was a major update that launched on July 7, 2011[85] and was made available for developers on July 28, 2011.[86] The development period was organized into thirteen milestones; on June 6, 2011, the last of the thirteen milestones was finished.[86][87] 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:[88]

  • Strings in switch[93]
  • Automatic resource management in try-statement aka try-with-resources statement[94]
  • Improved type inference for generic instance creation, aka the diamond operator <>[95]
  • Simplified varargs method declaration[96]
  • Binary integer literals[97]
  • Allowing underscores in numeric literals[98]
  • Catching multiple exception types and rethrowing exceptions with improved type checking[99]
  • Concurrency utilities under JSR 166[100]
  • 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.attribute and java.nio.file.spi[101][102]
  • 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[103]
  • Enhanced library-level support for new network protocols, including SCTP and Sockets Direct Protocol
  • Upstream updates to XML and Unicode
  • Java deployment rule sets[104]

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).[105][106]

Java 7 was the default version to download on java.com from April 2012 until Java 8 was released.[107]

Java 7 updates

Oracle issued public updates to the Java 7 family on a quarterly basis[108] until April 2015 when the product reached the end of its public availability.[109] Further updates for JDK 7, which continued until July 2022, are only made available to customers with a support contract.[110]

More information Release, Release date ...

Java SE 8

Quick Facts Released, # of JEPs ...

Java 8 was released on March 18, 2014,[146][147] and included some features that were planned for Java 7 but later deferred.[148]

Work on features was organized in terms of JDK Enhancement Proposals (JEPs).[149]

  • JSR 335, JEP 126: Language-level support for lambda expressions (officially, lambda expressions; unofficially, closures) under Project Lambda[150] and default methods (virtual extension methods)[151][152][153] 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.[154][155] Sun later declared that lambda expressions would be included in Java and asked for community input to refine the feature.[156] 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,[151] default methods can also be used for multiple inheritance of behavior (but not state).

Java 8 is not supported on Windows XP[158] but as of JDK 8 update 25, it can still be installed and run under Windows XP.[159] 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. But its components compatibility starts to break on unsupported OS in early build during Java 8 updates development.[citation needed]

From October 2014, Java 8 was the default version to download (and then again the download replacing Java 9) from the official website.[160] "Oracle will continue to provide Public Updates and auto updates of Java SE 8, Indefinitely for Personal Users".[161]

Java 8 updates

More information Release, Release date ...

Java SE 9

Quick Facts Released, # of JEPs ...

Java SE 9 was made available on September 21, 2017[238] due to controversial acceptance of the current implementation of Project Jigsaw by Java Executive Committee[239] 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.[240]

The first Java 9 release candidate was released on August 9, 2017.[246] The first stable release of Java 9 was on September 21, 2017.[247]

History

At JavaOne 2011, Oracle discussed features they hoped to release for Java 9 in 2016.[248] Java 9 should include better support for multi-gigabyte heaps, better native code integration, a different default garbage collector (G1, for "shorter response times")[249] and a self-tuning JVM.[250] In early 2016, the release of Java 9 was rescheduled for March 2017[251] and later again postponed four more months to July 2017.[252]

Java 9 updates

More information Release, Release date ...

Java SE 10

Quick Facts Released, # of JEPs ...

OpenJDK 10 was released on March 20, 2018, with twelve new features confirmed.[258] Among these features were:

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. So we can do:

var list = new ArrayList<String>(); // infers ArrayList<String>
var stream = list.stream();         // infers Stream<String>

Java 10 updates

More information Release, Release date ...

Java SE 11

Quick Facts Released, # of JEPs ...

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:[264]

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.[265]

Java 11 updates

More information Release, Release date ...

Java SE 12

Quick Facts Released, # of JEPs ...

JDK 12 was released on March 19, 2019. Among others, Java 12 includes a number of new features, such as:[312]

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

More information Release, Release date ...

Java SE 13

Quick Facts Released, # of JEPs ...

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".[318]

JEP 355 Text Blocks allows multiline string literals:

String doc = """
              <doc lang="en">
                  <body>
                      <p>Hello, world</p>
                  </body>
              </doc>
              """;

Java 13 updates

More information Release, Release date ...

Java SE 14

Quick Facts Released, # of JEPs ...

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".[323]

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.[324]

record Point(int x, int y) { }
Point p = new Point(3, 4);
System.out.println(p.x());

Java 14 updates

More information Release, Release date ...

Java SE 15

Quick Facts Released, # of JEPs ...

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.

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.[330]

Java 15 updates

More information Release, Release date ...

Java SE 16

Quick Facts Released, # of JEPs ...

JDK 16 was released on March 16, 2021. Java 16 removes Ahead-of-Time compilation (and Graal JIT) options.[336] 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.

Java 16 updates

More information Release, Release date ...

Java SE 17

Quick Facts Released, # of JEPs ...

JDK 17 was released in September 2021.[342] Java 17 is the 2nd long-term support (LTS) release since switching to the new 6-month release cadence (the first being Java 11).

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.format("String %s", s);
        case Long l     -> String.format("long %d", l);
        case Double d   -> String.format("double %f", d);
        case Integer i && i > 0                            // refining patterns
                        -> String.format("positive int %d", i);
        case Integer i && i == 0 
                        -> String.format("zero int %d", i);
        case Integer i && i < 0 
                        -> String.format("negative int %d", i);
        default         -> o.toString();
    };
};

Java 17 updates

More information Release, Release date ...

Java SE 18

Quick Facts Released, # of JEPs ...

JDK 18 was released on March 22, 2022.[367]

Java 18 updates

More information Release, Release date ...

Java SE 19

Quick Facts Released, # of JEPs ...

JDK 19 was released on 20 September 2022.[376]

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

More information Release, Release date ...

Java SE 20

Quick Facts Released, # of JEPs ...

Java 20 was released on 21 March 2023.[382] All JEPs were either incubators or previews.

Java 20 updates

More information Release, Release date ...

Java SE 21

Quick Facts Released, # of JEPs ...

Java 21 was released on 19 September 2023.[388] There are eight JEPs that are not in preview or incubating, 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). The 32-bit version of Java for Windows on x86 has been deprecated for removal.

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

More information Release, Release date ...

Java SE 22

Quick Facts Released, # of JEPs ...

Java 22 was released on March 19, 2024.[394][395]

At least one API has been removed from Java; i.e. a very rarely-used API (for threading) was removed from Java 22.[3][396]

Java SE 23

Quick Facts Releasing ...

As of January 2024, the specification for Java 23 has not yet been finalized. Java 23 is scheduled for release in September 2024.[397]

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 run) full AOT compilation, reducing overall dynamism (by adopting so called "closed-world constraints") to reduce dynamic compilation overhead.
  • Project Babylon aims to extend the Java programming language’s reach to alternative programming models with an enhancement to its reflective programming capabilities, called code reflection (i.e. reflection over code itself). Its stated primary goal is to run Java code on GPUs, with SQL and other programming models being a secondary target.

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[398] 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

  1. Reinhold, Mark (2017-09-06). "Moving Java Forward Faster". Retrieved 2017-09-16.
  2. "Calling 'all aboard' on the six-month Java release train". theserverside.com. 2017-09-12. Retrieved 2017-09-16.
  3. "Remove Thread.countStackFrames". bugs.openjdk.org. Retrieved 2024-04-16.
  4. Reinhold, Mark (2018-08-17). "What does LTS mean for OpenJDK?". Retrieved 2018-08-28.
  5. "JavaSoft ships Java 1.0" (Press release). Archived from the original on March 10, 2007. Retrieved 2008-02-05.
  6. Tennant, Don (March 15, 1997). "Taligent prepares internationalisation technology for the big time". Computerworld. IDG. Retrieved January 16, 2021.
  7. "Version 1.3 full list of changes". Archived from the original on November 7, 2006.
  8. "Version full 1.4 list of changes". Archived from the original on January 8, 2007.
  9. Goetz, Brian (2006). Java Concurrency in Practice. Addison-Wesley. p. xvii. ISBN 0-321-34960-1.
  10. "Java 5.0 is no longer available on Java.com". Java.com. 2009-11-03. Retrieved 2016-09-30.
  11. Lineback, Nathan. "Misc Windows 2 – Nathan's Toasty Technology page". Retrieved 2016-09-30.
  12. Yank, Kebin (May 3, 2005). "Java 5 available for Mac OS X". Sitepoint. Retrieved September 30, 2016.
  13. "Version 1.5.0 or 5.0?". Oracle.com. Retrieved April 18, 2016.
  14. Version 6, Java webnotes, Sun.
  15. "Mustang's HotSpot". Archived from the original on January 2, 2007.
  16. Darcy, Joe (2008-08-03). "An apt replacement". Retrieved 2009-07-29.
  17. "Oracle Java SE Support Roadmap". Oracle Corporation. September 19, 2012. Retrieved October 22, 2012.
  18. "Nimbus — Java.net". Archived from the original on 20 August 2011. Retrieved 1 February 2020.
  19. Humble, Charles (2008-05-13). "JavaOne: Garbage First". infoq.com. Retrieved 2008-09-07.
  20. Coward, Dany (2008-11-12). "Java VM: Trying a new Garbage Collector for JDK 7". Archived from the original on 2011-12-08. Retrieved 2012-01-22.
  21. "Java 6 Update 32 fails to install..." MSFN. Archived from the original on 2016-08-16. Retrieved 2016-07-31.
  22. JDK7 Archived 2016-12-15 at the Wayback Machine, Sun.
  23. "JDK 7". openjdk.java.net.
  24. Miller, Alex. "Java 7". Retrieved 2024-02-05.
  25. "Compressed oops in the Hotspot JVM". OpenJDK. Retrieved 2012-08-01.
  26. "Java HotSpot VM Options". Oracle. Retrieved 2013-04-11.
  27. "Java Programming Language Enhancements". Download.oracle.com. Retrieved 2013-01-15.
  28. "Strings in switch Statements". Download.oracle.com. Retrieved 2013-01-15.
  29. "The try-with-resources Statement". Download.oracle.com. Retrieved 2013-01-15.
  30. "Type Inference for Generic Instance Creation". Download.oracle.com. Retrieved 2013-01-15.
  31. "Binary Literals". Download.oracle.com. Retrieved 2013-01-15.
  32. "Underscores in Numeric Literals". Download.oracle.com. Retrieved 2013-01-15.
  33. "Concurrency JSR-166". Retrieved 2010-04-16.
  34. "File I/O (Featuring NIO.2)". Java.sun.com. 2008-03-14. Retrieved 2013-01-15.
  35. "Legacy File I/O Code". Java.sun.com. 2012-02-28. Retrieved 2013-01-15.
  36. "JDK 7 Features". OpenJDK. 2011-07-28. Retrieved 2013-03-15.
  37. "Introducing Deployment Rule Sets". Oracle. 2013-08-21. Retrieved 2019-01-22.
  38. "JavaOne 2011 Keynote". Oracle. Archived from the original on 2011-10-26.
  39. "End of Java 7 Public Updates". After April 2015, Oracle will no longer post updates of Java SE 7 to its public download sites. Existing Java SE 7 downloads already posted as of April 2015 will remain accessible in the Java Archive on the Oracle Technology Network. Developers and end-users are encouraged to update to more recent Java SE versions that remain available for public download in order to continue receiving public updates and security enhancements. [..] July 2015: Updates for Java 7 are no longer available to the public. Oracle offers updates to Java 7 only for customers who have purchased Java support or have Oracle products that require Java 7.
  40. "Oracle Java SE Support Roadmap". Oracle Corporation. 2014-12-19. Retrieved 2015-01-07.
  41. "Java SE 7 Update 6 Released". Archived from the original on October 27, 2012.
  42. "Oracle Critical Patch Update – January 2016". www.oracle.com. Retrieved 2016-01-20.
  43. "Proposed new schedule for Java 8". 2013-04-18. Retrieved 2013-04-19.
  44. "JDK 8". OpenJDK. 2013-04-18. Retrieved 2014-01-28.
  45. "JDK 8 features". OpenJDK. 2014-01-28. Retrieved 2014-01-28.
  46. "JSR 337". Retrieved 2014-01-30.
  47. "Java 7 Features". Sun Microsystems. 2010-02-09. Retrieved 2010-04-16.
  48. "Interface evolution via virtual extension methods" (PDF). Brian Goetz. 2011-07-20. Retrieved 2014-03-27.
  49. "Lambda Expressions for the Java Programming Language". Brian Goetz. 2012-10-23. Retrieved 2014-03-27.
  50. "The Java Tutorials: Default Methods". Oracle. Archived from the original on 2017-05-23. Retrieved 2014-03-27.
  51. Gafter, Neal (2006-08-18). "Closures for Java". Retrieved 2008-03-09.
  52. Gosling, James (2008-01-31). "Closures". Archived from the original on 2011-07-22. Retrieved 2008-03-09.
  53. Reinhold, Mark (2009-11-28). "Closures for Java". Retrieved 2009-11-24.
  54. Stahl, Henrik (2014-07-11). "Updated: The future of Java on Windows XP". Oracle Corporation. Archived from the original on 2014-11-11. Retrieved 2014-11-11. JDK 8 is not supported on Windows XP. Early versions of JDK 8 had known issues with the installer on Windows XP that prevented it from installing without manual intervention. This was resolved in JDK 8 Update 25. The important point here is that we can no longer provide complete guarantees for Java on Windows XP, since the OS is no longer being updated by Microsoft. We strongly recommend that users upgrade to a newer version of Windows that is still supported by Microsoft in order to maintain a stable and secure environment.
  55. Wieldt, Tori (October 27, 2014). "Java SE 8 on Java.com". blog.oracle.com. Archived from the original on November 29, 2014. Retrieved November 24, 2014.
  56. "Java SE Development Kit 8, Update 5 (JDK 8u5)". oracle.com. Retrieved 2014-04-28.
  57. "18 security bug fixes". oracle.com. Retrieved 2014-07-16.
  58. "Java SE Development Kit 8, Update 66 Release Notes". oracle.com. Retrieved October 22, 2015.
  59. "Java SE Development Kit 8, Update 71 Release Notes". oracle.com. Retrieved January 20, 2015.
  60. "Java SE Development Kit 8 Update 71 Bug Fixes". oracle.com. Retrieved January 20, 2015.
  61. "Java SE Development Kit 8, Update 73 Release Notes". oracle.com. Retrieved February 6, 2016.
  62. "Java SE Development Kit 8, Update 74 Release Notes". oracle.com. Retrieved February 6, 2016.
  63. "Java SE Development Kit 8, Update 77 Release Notes". oracle.com. Retrieved March 23, 2016.
  64. "Java SE Development Kit 8, Update 91 Release Notes". oracle.com. Retrieved March 23, 2016.
  65. "Java SE Development Kit 8, Update 131 Release Notes". www.oracle.com. Retrieved 2017-04-18.
  66. "Java SE Development Kit 8, Update 141 Release Notes". www.oracle.com. Retrieved 2017-07-18.
  67. "Java SE Development Kit 8, Update 144 Release Notes". www.oracle.com. Retrieved 2017-07-26.
  68. "Java SE Development Kit 8, Update 151 Release Notes". www.oracle.com. Retrieved 2017-10-19.
  69. "Java SE Development Kit 8, Update 152 Release Notes". www.oracle.com. Retrieved 2017-10-19.
  70. "Java SE Development Kit 8, Update 161 Release Notes". www.oracle.com. Retrieved 2018-01-18.
  71. "Java SE Development Kit 8, Update 162 Release Notes". www.oracle.com. Retrieved 2018-01-16.
  72. "Java SE Development Kit 8, Update 171 Release Notes". www.oracle.com. Retrieved 2018-04-17.
  73. "Java SE Development Kit 8, Update 172 Release Notes". www.oracle.com. Retrieved 2018-04-17.
  74. "Java SE Development Kit 8, Update 181 Release Notes". www.oracle.com. Retrieved 2018-07-20.
  75. "Java SE Development Kit 8, Update 191 Release Notes". www.oracle.com. Retrieved 2018-10-16.
  76. "Java SE Development Kit 8, Update 192 Release Notes". www.oracle.com. Retrieved 2018-10-16.
  77. "Java SE Development Kit 8, Update 201 Release Notes". www.oracle.com. Retrieved 2019-01-16.
  78. "Java SE Development Kit 8, Update 202 Release Notes". www.oracle.com. Retrieved 2019-01-16.
  79. "Java SE Development Kit 8, Update 211 Release Notes". www.oracle.com. Retrieved 2019-04-16.
  80. "Java SE Development Kit 8, Update 212 Release Notes". www.oracle.com. Retrieved 2019-04-16.
  81. "Java SE Development Kit 8, Update 221 Release Notes". www.oracle.com. Retrieved 2019-07-30.
  82. "Java SE Development Kit 8, Update 231 Release Notes". www.oracle.com. Retrieved 2019-10-16.
  83. "Java SE Development Kit 8, Update 241 Release Notes". www.oracle.com. Retrieved 2020-01-18.
  84. "Java SE Development Kit 8, Update 251 Release Notes". www.oracle.com. Retrieved 2020-04-14.
  85. "Java SE Development Kit 8, Update 261 Release Notes". www.oracle.com. Retrieved 2022-04-19.
  86. "JDK 8u261 Bug Fixes". www.oracle.com. Retrieved 2022-04-19.
  87. "Java SE Development Kit 8, Update 271 Release Notes". www.oracle.com. Retrieved 2022-04-19.
  88. "JDK 8u271 Bug Fixes". www.oracle.com. Retrieved 2022-04-19.
  89. "Java SE Development Kit 8, Update 281 Release Notes". www.oracle.com. Retrieved 2022-04-19.
  90. "JDK 8u281 Bug Fixes". www.oracle.com. Retrieved 2022-04-19.
  91. "Java SE Development Kit 8, Update 291 Release Notes". www.oracle.com. Retrieved 2022-04-19.
  92. "JDK 8u291 Bug Fixes". www.oracle.com. Retrieved 2022-04-19.
  93. "Java SE Development Kit 8, Update 301 Release Notes". www.oracle.com. Retrieved 2022-04-19.
  94. "JDK 8u301 Bug Fixes". www.oracle.com. Retrieved 2022-04-19.
  95. "Java SE Development Kit 8, Update 311 Release Notes". www.oracle.com. Retrieved 2022-04-19.
  96. "JDK 8u311 Bug Fixes". www.oracle.com. Retrieved 2022-04-19.
  97. "Java SE Development Kit 8, Update 321 Release Notes". www.oracle.com. Retrieved 2022-04-19.
  98. "Java SE Development Kit 8, Update 321 Bug Fixes". www.oracle.com. Retrieved 2022-04-19.
  99. "Java SE Development Kit 8, Update 331 Release Notes". www.oracle.com. Retrieved 2022-04-19.
  100. "Java SE Development Kit 8, Update 331 Bug Fixes". www.oracle.com. Retrieved 2022-04-19.
  101. "Java SE Development Kit 8, Update 333 Release Notes". www.oracle.com. Retrieved 2022-05-02.
  102. "Java SE Development Kit 8, Update 333 Bug Fixes". www.oracle.com. Retrieved 2022-05-02.
  103. "Java SE Development Kit 8, Update 341 Release Notes". www.oracle.com. Retrieved 2022-07-30.
  104. "Java SE Development Kit 8, Update 341 Bug Fixes". www.oracle.com. Retrieved 2022-07-30.
  105. "Java SE Development Kit 8, Update 351 Release Notes". www.oracle.com. Retrieved 2022-10-18.
  106. "Java SE Development Kit 8, Update 351 Bug Fixes". www.oracle.com. Retrieved 2022-10-18.
  107. "Java SE Development Kit 8, Update 361 Release Notes". www.oracle.com. Retrieved 2023-03-24.
  108. "Java SE Development Kit 8, Update 381 Release Notes". www.oracle.com. Retrieved 2023-09-12.
  109. "Java SE Development Kit 8, Update 391 Release Notes". www.oracle.com. Retrieved 2023-11-15.
  110. "JDK 9". Retrieved 2017-06-16.
  111. Chirgwin, Richard (July 2, 2017). "Java 9 release back on track, community votes 'yes'". theregister.co.uk. Retrieved 2017-07-29.
  112. Lea, Doug (January 15, 2015). "[concurrency-interest] jdk9 Candidate classes Flow and Submission Publisher". Archived from the original on January 20, 2015. Retrieved December 24, 2015.
  113. "JDK 9: First Release Candidate". 2017-08-09. Retrieved 2017-08-21.
  114. "Java 9: Release date and new features". techworld.com. 2017-07-21. Archived from the original on 2017-12-07. Retrieved 2017-09-16.
    "JDK 9". Oracle Corporation. Retrieved 2017-09-16.
  115. "JDK 9 Release Notes". oracle.com. 2017-09-21.
  116. "JDK 9.0.1 Release Notes". oracle.com. 2017-10-17.
  117. "JDK 9.0.1 Bug Fixes". oracle.com. 2017-10-17.
  118. "JDK 9.0.4 Release Notes". oracle.com. 2018-01-16.
  119. "JDK 9.0.4 Bug Fixes". oracle.com. 2018-01-16.
  120. OpenJDK. "JDK 10".
  121. "JDK 10 Release Notes". oracle.com. 2018-03-20.
  122. "JDK 10.0.1 Release Notes". oracle.com. 2018-04-17.
  123. "JDK 10.0.1 Bug Fixes". oracle.com. 2018-04-17.
  124. "JDK 10.0.2 Release Notes". oracle.com. 2018-07-17.
  125. "JDK 10.0.2 Bug Fixes". oracle.com. 2018-07-17.
  126. OpenJDK. "JDK 11".
  127. "Oracle JDK Migration Guide". Oracle Help Center. Retrieved 27 September 2018.
  128. "JDK 11". oracle.com. 2018-09-25.
  129. "JDK 11.0.1 Release Notes". oracle.com. 2018-10-16.
  130. "JDK 11.0.1 Bug Fixes". oracle.com. 2018-10-16.
  131. "JDK 11.0.2 Release Notes". oracle.com. 2019-01-15.
  132. "JDK 11.0.2 Bug Fixes". oracle.com. 2019-01-15.
  133. "JDK 11.0.3 Release Notes". oracle.com. 2019-04-16.
  134. "JDK 11.0.3 Bug Fixes". oracle.com. 2019-04-16.
  135. "JDK 11.0.4 Release Notes". oracle.com. 2019-07-16.
  136. "JDK 11.0.4 Bug Fixes". oracle.com. 2019-07-16.
  137. "JDK 11.0.5 Release Notes". oracle.com. 2019-10-15.
  138. "JDK 11.0.5 Bug Fixes". oracle.com. 2019-10-15.
  139. "JDK 11.0.6 Release Notes". oracle.com. 2020-01-14.
  140. "JDK 11.0.6 Bug Fixes". oracle.com. 2020-01-14.
  141. "JDK 11.0.7 Release Notes". oracle.com. 2020-04-14.
  142. "JDK 11.0.7 Bug Fixes". oracle.com. 2020-04-14.
  143. "JDK 11.0.8 Release Notes". oracle.com. 2020-07-14.
  144. "JDK 11.0.8 Bug Fixes". oracle.com. 2020-07-14.
  145. "JDK 11.0.9 Release Notes". oracle.com. 2020-10-20.
  146. "JDK 11.0.9 Bug Fixes". oracle.com. 2020-10-20.
  147. "JDK 11.0.10 Release Notes". oracle.com. 2021-01-19.
  148. "JDK 11.0.10 Bug Fixes". oracle.com. 2021-01-19.
  149. "JDK 11.0.11 Release Notes". oracle.com. 2021-04-20.
  150. "JDK 11.0.11 Bug Fixes". oracle.com. 2021-04-20.
  151. "JDK 11.0.12 Release Notes". oracle.com. 2021-07-20.
  152. "JDK 11.0.12 Bug Fixes". oracle.com. 2021-07-20.
  153. "JDK 11.0.13 Release Notes". oracle.com. 2021-10-19.
  154. "JDK 11.0.13 Bug Fixes". oracle.com. 2021-10-19.
  155. "JDK 11.0.14 Release Notes". oracle.com. 2022-01-18.
  156. "JDK 11.0.14 Bug Fixes". oracle.com. 2022-01-18.
  157. "JDK 11.0.15 Release Notes". oracle.com. 2022-04-19.
  158. "JDK 11.0.15 Bug Fixes". oracle.com. 2022-04-19.
  159. "JDK 11.0.16 Release Notes". oracle.com. 2022-07-19.
  160. "JDK 11.0.16 Bug Fixes". oracle.com. 2022-07-19.
  161. "JDK 11.0.16.1 Release Notes". oracle.com. 2022-08-18.
  162. "JDK 11.0.17 Release Notes". oracle.com. 2022-10-19.
  163. "JDK 11.0.17 Bug Fixes". oracle.com. 2022-10-19.
  164. "JDK 11.0.18 Release Notes". oracle.com. 2023-01-17.
  165. "JDK 11.0.18 Bug Fixes". oracle.com. 2023-01-17.
  166. "JDK 11.0.19 Release Notes". oracle.com. 2023-04-18.
  167. "JDK 11.0.19 Bug Fixes". oracle.com. 2023-04-18.
  168. "JDK 11.0.20 Release Notes". oracle.com. 2023-07-18.
  169. "JDK 11.0.20 Bug Fixes". oracle.com. 2023-07-18.
  170. "JDK 11.0.21 Release Notes". oracle.com. 2023-10-17.
  171. "JDK 11.0.21 Bug Fixes". oracle.com. 2023-10-17.
  172. "JDK 11.0.22 Release Notes". oracle.com. 2024-01-16.
  173. "JDK 11.0.22 Bug Fixes". oracle.com. 2024-01-16.
  174. OpenJDK. "12".
  175. "JDK 12 Release Notes". oracle.com. 2019-03-19.
  176. "JDK 12.0.1 Release Notes". oracle.com. 2019-04-16.
  177. "JDK 12.0.1 Bug Fixes". oracle.com. 2019-04-16.
  178. "JDK 12.0.2 Release Notes". oracle.com. 2019-07-16.
  179. "Azul Support Roadmap". Azul | Better Java Performance, Superior Java Support. Retrieved 2023-06-28.
  180. oracle.com, mark reinhold at (September 17, 2019). "Java 13 / JDK 13: General Availability".
  181. "JDK 13 Release Notes". oracle.com. 2019-09-17.
  182. "JDK 13.0.1 Release Notes". oracle.com. 2019-10-15.
  183. "JDK 13.0.2 Release Notes". oracle.com. 2020-01-14.
  184. "JDK 13.0.2 Bug Fixes". oracle.com. 2020-01-14.
  185. oracle.com, mark reinhold at (March 17, 2020). "Java 14 / JDK 14: General Availability".
  186. Evans, Ben (January 10, 2020). "Records Come to Java". Java Magazine. Oracle. Retrieved 10 July 2021.
  187. "JDK 14 Release Notes". oracle.com. 2020-03-17.
  188. "JDK 14.0.1 Release Notes". oracle.com. 2020-04-14.
  189. "JDK 14.0.1 Bug Fixes". oracle.com. 2020-04-14.
  190. "JDK 14.0.2 Release Notes". oracle.com. 2020-07-14.
  191. "JDK 14.0.2 Bug Fixes". oracle.com. 2020-07-14.
  192. Gavin Bierman; Brian Goetz (September 2018). "Pattern Matching for Java". cr.openjdk.java.net. Retrieved 2021-04-28.
  193. "JDK 15 Release Notes". oracle.com. 2020-09-15.
  194. "JDK 15.0.1 Release Notes". oracle.com. 2020-10-20.
  195. "JDK 15.0.1 Bug Fixes". oracle.com. 2020-10-20.
  196. "JDK 15.0.2 Release Notes". oracle.com. 2021-01-19.
  197. "JDK 15.0.2 Bug Fixes". oracle.com. 2021-01-19.
  198. "JDK 16 Release Notes". oracle.com. 2021-03-16.
  199. "JDK 16.0.1 Release Notes". oracle.com. 2021-04-20.
  200. "JDK 16.0.1 Bug Fixes". oracle.com. 2021-04-20.
  201. "JDK 16.0.2 Release Notes". oracle.com. 2021-07-20.
  202. "JDK 16.0.2 Bug Fixes". oracle.com. 2021-07-20.
  203. "JDK 17". openjdk.java.net. Retrieved 2021-09-17.
  204. "JDK 17 Release Notes". oracle.com. 2021-09-14.
  205. "JDK 17.0.1 Release Notes". oracle.com. 2021-10-19.
  206. "JDK 17.0.1 Bug Fixes". oracle.com. 2021-10-19.
  207. "JDK 17.0.2 Release Notes". oracle.com. 2022-01-18.
  208. "JDK 17.0.2 Bug Fixes". oracle.com. 2022-01-18.
  209. "JDK 17.0.3 Release Notes". oracle.com. 2022-04-19.
  210. "JDK 17.0.3 Bug Fixes". oracle.com. 2022-04-19.
  211. "JDK 17.0.3.1 Release Notes". oracle.com. 2022-05-02.
  212. "JDK 17.0.3.1 Bug Fixes". oracle.com. 2022-05-02.
  213. "JDK 17.0.4 Release Notes". oracle.com. 2022-07-19.
  214. "JDK 17.0.4 Bug Fixes". oracle.com. 2022-07-19.
  215. "JDK 17.0.4.1 Release Notes". oracle.com. 2022-08-18.
  216. "JDK 17.0.5 Release Notes". oracle.com. 2022-10-18.
  217. "JDK 17.0.5 Bug Fixes". oracle.com. 2022-10-18.
  218. "JDK 17.0.6 Release Notes". oracle.com. 2023-01-17.
  219. "JDK 17.0.6 Bug Fixes". oracle.com. 2023-01-17.
  220. "JDK 17.0.7 Release Notes". oracle.com. 2023-04-18.
  221. "JDK 17.0.7 Bug Fixes". oracle.com. 2023-04-18.
  222. "JDK 17.0.8 Release Notes". oracle.com. 2023-07-18.
  223. "JDK 17.0.8 Bug Fixes". oracle.com. 2023-07-18.
  224. "JDK 17.0.9 Release Notes". oracle.com. 2023-10-17.
  225. "JDK 17.0.9 Bug Fixes". oracle.com. 2023-10-17.
  226. "JDK 17.0.10 Release Notes". oracle.com. 2024-01-16.
  227. "JDK 17.0.10 Bug Fixes". oracle.com. 2024-01-16.
  228. "JDK 18". openjdk.org. Retrieved 28 June 2023.
  229. "JDK 18 Release Notes". oracle.com. 2022-03-22.
  230. "JDK 18.0.1 Release Notes". oracle.com. 2022-04-19.
  231. "JDK 18.0.1 Bug Fixes". oracle.com. 2022-04-19.
  232. "JDK 18.0.1.1 Release Notes". oracle.com. 2022-05-02.
  233. "JDK 18.0.1.1 Bug Fixes". oracle.com. 2022-05-02.
  234. "JDK 18.0.2 Release Notes". oracle.com. 2022-07-19.
  235. "JDK 18.0.2 Bug Fixes". oracle.com. 2022-07-19.
  236. "JDK 18.0.2.1 Release Notes". oracle.com. 2022-08-18.
  237. "JDK 19". openjdk.org. Retrieved 2022-09-19.
  238. "JDK 19 Release Notes". oracle.com. 2022-09-20.
  239. "JDK 19.0.1 Release Notes". oracle.com. 2022-10-18.
  240. "JDK 19.0.1 Bug Fixes". oracle.com. 2022-10-18.
  241. "JDK 19.0.2 Release Notes". oracle.com. 2023-01-17.
  242. "JDK 19.0.2 Bug Fixes". oracle.com. 2023-01-17.
  243. "JDK 20". openjdk.org. Retrieved 2023-04-21.
  244. "JDK 20 Release Notes". oracle.com. 2023-03-21.
  245. "JDK 20.0.1 Release Notes". oracle.com. 2023-04-18.
  246. "JDK 20.0.1 Bug Fixes". oracle.com. 2023-04-18.
  247. "JDK 20.0.2 Release Notes". oracle.com. 2023-07-18.
  248. "JDK 20.0.2 Bug Fixes". oracle.com. 2023-07-18.
  249. "JDK 21". OpenJDK. Retrieved June 12, 2023.
  250. "JDK 21 Release Notes". oracle.com. 2023-09-19.
  251. "JDK 21.0.1 Release Notes". oracle.com. 2023-10-17.
  252. "JDK 21.0.1 Bug Fixes". oracle.com. 2023-10-17.
  253. "JDK 21.0.2 Release Notes". oracle.com. 2024-01-16.
  254. "JDK 21.0.2 Bug Fixes". oracle.com. 2024-01-16.
  255. "JDK 22". OpenJDK. Retrieved April 10, 2024.
  256. "Oracle Releases Java 22". oracle.com. Retrieved 2024-03-20.
  257. "Java SE 22 ( JSR 397)". cr.openjdk.org. Retrieved 2024-04-16.
  258. "Java SE 23 Platform JSR 398". openjdk.org. Retrieved 2024-01-17.

Share this article:

This article uses material from the Wikipedia article Java_version_history, and is written by contributors. Text is available under a CC BY-SA 4.0 International License; additional terms may apply. Images, videos and audio are available under their respective licenses.