JAVA_HOME环境变量和Java JDK趣事
我想让 Java 在 1.6xxx 上运行 - 我更改了 JAVA_HOME 变量并将其指向目录 C:\Program Files\Java\jdk1.6.0._16。
我重新启动 PC - 我想我可以检查我的机器指向的是哪个版本的 Java - 但它仍然指向旧版本的 Java,例如 v1.5.0_16
你能帮我重新回忆一下 Java JDK 的正确设置吗?
I wanted to get Java running at 1.6xxx - I changed the JAVA_HOME variable and pointed it to the directory C:\Program Files\Java\jdk1.6.0._16.
I restart the PC - and I think I can check which version of Java my machine is pointing at - but it still points to the older version of Java e.g v1.5.0_16
Can you help me rejog my memory on correct setup for Java JDK?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您需要重置路径变量以指向 1.6,
例如
此外,请确保变量
JAVA_HOME
也设置为上述位置。You need to reset your path variable to point to 1.6
something like
Additionally, make sure the variable
JAVA_HOME
is also set with the above location.JAVA_HOME 被其他应用程序使用,例如 Tomcat。 Windows 仅检查 PATH 环境变量以查找可以找到 java 可执行文件的位置。
JAVA_HOME is used by other applications, such as Tomcat. Windows just checks the PATH environment variable for locations where it can find the java executable.
在 cmd shell 上尝试一下:
Try this on the cmd shell:
该图片将解释所有步骤。
了解更多说明
This Image will explain all steps.
For More Explanation