Can Java 9 run on a 32-bit OS?

JavaJava 9

Java Problem Overview


Seems there are no 32-bit download packages on Oracle's available download list.

UPDATE

Can download here:

wget --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/java/jdk/9+181/jdk-9_windows-x86_bin.exe

Java Solutions


Solution 1 - Java

Although the 32-bit binaries for JDK9 seem to be missing from Oracle's lousy, unencrypted download page, if (after clicking "Accept License Agreement") you copy the URL of the 64-bit binaries and change x64 to x86, it will give you the 32-bit binaries.


Update: And now it's gone. Bizarre! What is Oracle playing at? They went to the effort to fix x86-specific bugs for Java 9, they explicitly said 32-bit Windows and Linux were supported, they list installation instructions for 32-bit systems, they made 32-bit builds fully available throughout the pre-release period for testing purposes, and nothing in their JDK 9 migration guide indicates that 32-bit platforms have been dropped (quite the opposite in fact: it says the -client VM command line option has been dropped so the faster -server VM is now the default for 32-bit).

So why are they suddenly hiding the release binaries?

I happened to have downloaded the Windows JDK (including JRE) and the Linux JRE for x86. I don't have the Linux JDK. There's an Oracle digital signature in the properties of the Windows exe so you can see that it's genuine. I do hope Oracle get their act together.


Update 2: Apparently Oracle has decided to eliminate support for x86 Java forever. They somehow finished, compiled, digitally signed, and published the Java 9 binaries by accident. The binaries still work, but presumably will not receive updates.


Update 3: Apparently Oracle has become so hateful and hostile towards Java developers that they have compelled Google to block the above downloads with a DMCA request. Nothing I can do. Sorry. If you have Java 9, you have it, and it will still work. If you don't have Java 9, well, you'll have to get creative.

Solution 2 - Java

Chief Java Architect Mark Reinhold in Twitter on September 25:

> Sorry, but we have no plans to ship 32-bit builds of JDK 9. We’re > trying to focus more on the future than the past.

> Yes, you can build your own 32-bit JDK 9 binaries.

Solution 3 - Java

I found a Win32 build here: https://github.com/ojdkbuild/ojdkbuild

This is a OpenJDK provided by RedHat (without support), no idea if they will provide those builds in future.

Solution 4 - Java

Oracle has dropped Windows 32-bit Client VM

However: The statement there "In JDK 9, the Windows 32–bit client VM is not available. Only a server VM is offered." is not even accurate, there is not even 32-bit server VM (as of Sep 27, 2017).

Update: Not just Windows, but no 32-bit for any platform is available.

enter image description here

Solution 5 - Java

Try the below link for openJDK, offers X86 (32bit) and X64 (64bit) for most java versions

https://adoptopenjdk.net/releases.html?variant=openjdk16&jvmVariant=hotspot

Solution 6 - Java

Dropped Windows 32–bit Client VM: In JDK 9, the Windows 32–bit client VM is not available.

data source

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionauntyellowView Question on Stackoverflow
Solution 1 - JavaBoannView Answer on Stackoverflow
Solution 2 - JavaVadzimView Answer on Stackoverflow
Solution 3 - JavaEmmeran SeehuberView Answer on Stackoverflow
Solution 4 - JavaHendy IrawanView Answer on Stackoverflow
Solution 5 - JavashawndfernandesView Answer on Stackoverflow
Solution 6 - JavafrancogpView Answer on Stackoverflow