访问java.exe时出现问题
嘿!!
我的问题是我的终端不知道命令 java.lang. 所以我将解决直接访问java.exe的问题。
代码:
'C:\Program Files\Java\jre6\bin\java.exe' -blabla
异常:
Wrong Syntax
请帮忙
Hy!!
My Problem is that my terminal doesn't know the command java.
So i will solve the problem to access the java.exe directly.
Code:
'C:\Program Files\Java\jre6\bin\java.exe' -blabla
Exception:
Wrong Syntax
Please help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为了让您的终端识别命令 java,您必须将条目
C:\Program Files\Java\jre6\bin\
放入环境变量中名为 PATH 的变量中。要在 Windows 上执行此操作:
;
到最后一个条目编辑:要像您希望的那样运行它,您应该使用
"
而不是'
。因此您的命令将如下所示:For your terminal to recognize command java you must put the entry
C:\Program Files\Java\jre6\bin\
in your Environmental Variables in the variable called PATH.To do so on Windows:
;
to the last entryEDIT: To run it like you want you should use
"
instead of'
. So your command will look like:您可能需要将已安装的 JAVA 代码的路径添加到环境
PATH
变量中。这将允许您只需在命令行中键入 java.exe 并让它找到可执行文件,而无需完整路径。然后您可以输入java -help
来查看可用的选项。You probably need to add the path to the installed JAVA code to your enviroment
PATH
variable. This will allow you to just typejava.exe
at the command line and have it find the executable without needing the full path. Then you could typejava -help
to see the options available.