The latest version of Java for macOS High Sierra

high sierrajava

On my High Sierra Mac

java --version 

gives

java version "1.8.0_172"
Java(TM) SE Runtime Environment (build 1.8.0_172-b11)
Java HotSpot(TM) 64-Bit Server VM (build 25.172-b11, mixed mode)

but in Oracle's documentation and list of downloads I see references to versions that are much higher, notably 9 or even 10.

What is the most up to date version of Java intended for use with for use on macOS High Sierra?

Best Answer

Java 11

The implementations of Java 8, 9, 10, and 11 based on OpenJDK from vendors such as Azul Systems, Oracle, and AdoptOpenJDK run on macOS High Sierra and Mojave (and some older macOS as well).

Java 12, not yet released for production, runs on High Sierra as well.

LTS

Note that Java development has changed recently. Oracle and the Java community have adopted a faster cadences for releases, a fashion known as the Release Train. Every six months a new version arrives, as discussed in this article. These are production-ready fully-tested releases. However, these versions may not be supported free-of-cost with patches after the successive version arrives.

The exception is that every three years, the sixth release in succession shall be designated a Long-Term Support (LTS) version. Versions 8 and 11 are both LTS, as will be version 17. This means the version will receive updates and fixes for years instead of months.

This applies, at least, customers paying a commercial vendor. Free-of-cost implementations may also receive updates under LTS from some providers. We’ve yet to see if that happens or not.

This approach using rapid delivery train with LTS is new in the Java world.

To learn more, read Java Is Still Free.

Vendors

Here is a flowchart that might help guide you in choosing a source for Java 11.

flowchart for deciding amongst vendors of Java 11 implementations