如何在 WIndows 7 64 位上将 JDK 而不是 JRE 设置为默认 JVM?

发布于 2024-10-09 09:31:51 字数 140 浏览 1 评论 0原文

我尝试安装 Android SDK,但它说 JRE 不够,它需要 JDK,我已经从 Oracle 网站安装了 JDK。我确信它已安装,因为我有一个使用 JDK 而不是 JRE 运行的 Eclipse,但它是手动配置的。如何让android SDK安装程序识别JDK?

Im trying to install Android SDK but it says that JRE is not enough and that it needs JDK, I already installed JDK from Oracle website. I'm sure it is installed 'cause I have an eclipse running with the JDK intead of JRE but it was configured manually. How can I make the android SDK installer recognize the JDK?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

思慕 2024-10-16 09:31:51

无论您的操作系统如何,Eclipse、VisualVM 和 Andriod SDK 等 32 位应用程序都只能在 32 位 JDK 上运行。所以你需要安装 32 位 JDK 并设置它的路径。如果您混合使用应用程序(例如 64 位 Eclipse 和 32 位 Android),这真的很令人沮丧:(

32-bit applications like Eclipse, visualvm and Andriod SDK will run only on 32-bit JDK regardless on your operating system. So you need to install 32-bit JDK and set your paths to it. It's really frustrating if you have a mix of apps, say, 64bit Eclipse and 32-bit Android :(

春风十里 2024-10-16 09:31:51

在win7 64位下

驱动器:\Program files(x86)\java\jdk\bin

复制整个路径,现在右键单击我的电脑>属性>高级选项卡>环境变量,并在该行前面添加分号后将上述字符串附加到路径中

In win7 64 bit

drive:\Program files(x86)\java\jdk\bin

copy the whole path and now right click on my computer>properties>advanced tab> environment variables and append the above string to the path after adding semicolon before this line

话少心凉 2024-10-16 09:31:51

IMO,这个问题包括几个部分:

  1. 正确设置 HK_LM\SOFTWARE\JavaSoft\Java Development Kit\CurrentVersion 指向您安装的 jdk 版本。
  2. 将 JAVA_HOME 环境变量设置为 JDK 安装目录。
  3. 在 PATH 环境变量中创建 %JAVA_HOME%\bin。
  4. 调用 java 时,请确保 %JAVA_HOME%\jre\lib\rt.jar 在您的类路径中。
  5. 正如其他人提到的,32 位和 64 位应用程序需要不同版本的 JDK。

IMO, this problem includes several parts:

  1. Set HK_LM\SOFTWARE\JavaSoft\Java Development Kit\CurrentVersion correctly point to the jdk version you installed.
  2. Set JAVA_HOME environment variable to the JDK installed directory.
  3. Make %JAVA_HOME%\bin in your PATH environment variable.
  4. When calling java, ensure %JAVA_HOME%\jre\lib\rt.jar is in your class path.
  5. And as mentioned by others, 32-bit and 64-bit applications require different versions of JDK.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文