JDK指向错误的JRE
我在闪存驱动器上有一个便携式 JDK,并将其带到我的计算机上,但是,它无法使用,因为 JDK 指向闪存驱动器上的 JRE。我该如何改变这个? java配置文件在哪里以及它们叫什么?
I had a portable JDK on a flashdrive and brought it over to my computer, however, it can not be used because the JDK points to the JRE on the flashdrive. How do I change this? Where are the java configuration files and what are they called?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将(系统)环境变量设置为指向闪存驱动器 JDK 位置。此外,如果您在执行此操作后打开命令提示符,您将能够执行 javac 并看到一些输出。
Set the (system) environment variable to point to the flashdrive JDK location. Also if you open a command prompt after doing this you will be able to execute
javac
and see some output.如果您使用的是 Windows,请尝试打开控制面板并单击“Java”。您可以从此面板编辑许多不同的设置。
If you are using Windows, try opening Control Panel and clicking on "Java". You can edit a number of different settings from this panel.
在 Windows 中最简单的方法创建批处理文件
设置 JDK_HOME= .\
设置 PATH=%PATH%;%JDK_HOME%\BIN
simplest way in windows creat batch file
set JDK_HOME= .\
set PATH=%PATH%;%JDK_HOME%\BIN