问题描述
在Mac OS X 10.7.3上安装JDK7(Java 7)的链接是什么?
What is the link to install JDK7 (Java 7) on Mac OS X 10.7.3?
它安装的版本是什么?
它在我的盒子上安装在哪里?
Where does it install on my box?
我如何使用它?
推荐答案
(仅限64位)
这将安装到 / Library / Java / JavaVirtualMachines /1.7.0.jdk
。
然而,当你运行 java -version
它仍然会输出 1.6
或其他一些旧版本。 按照以下自述说明进行操作:
However, when you run java -version
it will still output 1.6
or some other old version. Follow the readme directions below:
在 / Applications / Utilities
中打开 Java首选项
。将 Java SE 7
拖到顶部。它现在将是您的默认JVM。再次运行 java -version
,你会看到如下内容:
Open Java Preferences
in /Applications/Utilities
. Drag Java SE 7
to the top. It will now be your default JVM. Run java -version
again, and you should see something like:
java version "1.7.0_04"
Java(TM) SE Runtime Environment (build 1.7.0_04-bxx)
Java HotSpot(TM) 64-Bit Server VM (build 23.0-b17, mixed mode)
一旦完成,Eclipse的新安装应该默认选择JDK7。否则:
Once this is complete, a new install of Eclipse should select JDK7 by default. Otherwise:
- 转到
Eclipse
- >首选项。 ..
- >Java
- >已安装的JRE
- 点击
添加...
- 选择
标准VM
- 将
/Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home
粘贴到JRE home
- 将
JRE名称
更改为有用的内容,例如Java SE 7
- 点击
完成
- 选中新创建的JRE旁边的复选框。
- go to
Eclipse
->Preferences...
->Java
->Installed JREs
- click
Add...
- Select
Standard VM
- paste
/Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home
intoJRE home
- Change the
JRE name
to something useful likeJava SE 7
- Click
Finish
- Check the checkbox next to your newly created JRE.
这篇关于如何在Mac OS X 10.7.3上安装JDK7(Java 7)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!