是否可以将实用程序jar添加到Window的系统路径?
我的findclass.jar
是一个位于C:\
目录中的可以解析的jar
如果我打开cmd.exe,请将目录更改为C:\
,然后键入:
java -jar findclass.jar \path\tojar.jar nameofclass.class
它将搜索给定班级的另一个罐子。
如何将findclass.jar添加到我的Window系统路径中,这样我就不需要将目录更改为C:\
了?
我尝试了set path=C:\;%PATH%
和set path=C:\findclass.jar;%PATH%
但是当我尝试从另一个directroy执行它时,我得到Error: Unable to access jarfile findclass.jar
。
是否无法将.jar文件添加到路径中?
答案 0 :(得分:1)
将其添加到CLASSPATH环境变量中。