问题描述
是否可以以zip格式获取java?我不想通过获取.exe文件来安装它。
Is it possible to get java in zip format? I don't want to install it by getting .exe file.
是否有java 1.8的zip版本,以便我可以下载并提取它并开始在我的Windows机器(64位处理器)中使用它
is there any zip version of java 1.8 so that i can download it and extract it and start using it in my Windows machine(64 bit processor)
推荐答案
您可以从安装EXE中提取JDK文件夹。
You can extract the JDK folder from the Installation EXE.
执行以下操作。
步骤
- 从
- 从
- 使用7-Zip打开installition exe
- 解压工具.zip
- 将tools.zip的内容解压缩到一个文件夹(例如c:\ jdk)。
- 打开解压缩的文件夹在cmd提示符下。
- 执行
for / r%x in(* .pack)do .\bin\unpack200 -r%x%〜 dx%~px%~nx.jar
命令 - 将
JAVA_HOME
设置为jdk(例如c :\ jdk)文件夹。 - 将
%JAVA_HOME%/ bin
添加到PATH env变量。
- Download JDK from Oracle
- Download and Install 7-zip from here
- Open installition exe using 7-Zip
- Extract the tools.zip
- Extract the content of tools.zip to a folder (e.g. c:\jdk).
- Open the extracted folder in cmd prompt.
- Execute
for /r %x in (*.pack) do .\bin\unpack200 -r "%x" "%~dx%~px%~nx.jar"
command - Set
JAVA_HOME
to the jdk (e.g c:\jdk) folder. - Add
%JAVA_HOME%/bin
to the PATH env variable.
测试
运行以下逗号为了检查安装,它将打印JDK的版本。
Run the following command to check the installation, it will print the version of JDK.
c:> javac -version
javac 1.7.0_51
注:已测试JDK 1.7和1.8
NOTE: Tested with JDK 1.7 and 1.8
更新1
编辑答案添加回答本身而不是博客帖子的链接。
Edited the answer to add the steps in the answer itself instead of the link to a blog post.
更新2
对于64位,请查看 by
For 64-Bit please check unpack-jdk-x64.bat by grabantot
这篇关于在Windows中获取oracle java 1.8而不安装它的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!