Reputation: 11449
How can I get JAVA 9 JRE / JDK as a zip file rather than EXE or MSI installer?
https://jdk9.java.net/download/
Upvotes: 13
Views: 17003
Reputation: 21
From here: https://stackoverflow.com/a/6571736/8714033
C:\JDK
in this case)jdk-7u7-windows-x64.exe
)jdk-XuXX-windows-x64.exe
into the directory C:\JDK
cmd.exe
:
cd C:\JDK\.rsrc\1033\JAVA_CAB10
extrac32 111
C:\JDK\.rsrc\1033\JAVA_CAB10\tools.zip
with 7-zipcmd.exe
:
cd C:\JDK\.rsrc\1033\JAVA_CAB10\tools\
for /r %x in (*.pack) do .\bin\unpack200 -r "%x" "%~dx%~px%~nx.jar"
(this will convert all .pack
files into .jar
files)C:\JDK\.rsrc\1033\JAVA_CAB10\tools
where you want your JDK to beJAVA_HOME
and PATH
manually to point to your JDK dir and its BIN subdirectory.Though my experience was a bit different, tools.zip can be in a different place depending on JDK version.
Upvotes: 2
Reputation: 1914
You can download JDK 9 zip file from Java Platform, Standard Edition 9 Reference Implementations
Upvotes: 6
Reputation: 16516
You can download JDK 9 Early-Access Builds from jdk.java.net, All other locations (jdk9-builds, jdk9.java.net) are not accessible/migrated.
Upvotes: 1
Reputation: 2145
As mentionend you can download the jigsaw distribution or you can follow the instructions from here to build your own distribution.
Upvotes: 3
Reputation: 63912
Look at https://jdk9.java.net/ carefully there's "JDK 9 Early Access with Project Jigsaw" that is actually zip download.
Upvotes: 11