设置Windows变量以执行Java程序

前端之家收集整理的这篇文章主要介绍了设置Windows变量以执行Java程序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在设置这个变量
set srcDir = C:\Developpement\Workspaces\Eclipse\MyAuthenticationProvider\src

然后我执行这个程序

java -DMJF=MyAuthentication.jar -Dfiles=%srcDir% weblogic.management.commo.WebLogicMBeanMaker

但我有这个奇怪的错误

The specified input files directory,"%srcDir%",does not exist.

我甚至尝试过使用

java -DMJF=MyAuthentication.jar -Dfiles=$srcDir weblogic.management.commo.WebLogicMBeanMaker

结果相同

The specified input files directory,"$srcDir",does not exist.

另一个测试:

C:\Developpement\Workspaces\Eclipse\WLAuthenticationProvider>set a=test

C:\Developpement\Workspaces\Eclipse\WLAuthenticationProvider>echo $a
$a

C:\Developpement\Workspaces\Eclipse\WLAuthenticationProvider>
目前,您正在设置srcDir
set srcDir = C:\Developpement\Workspaces\Eclipse\MyAuthenticationProvider\src

删除空格

set srcDir=C:\Developpement\Workspaces\Eclipse\MyAuthenticationProvider\src

我相信你原来的命令会起作用.

java -DMJF=MyAuthentication.jar -Dfiles=%srcDir% weblogic.management.commo.WebLogicMBeanMaker
原文链接:https://www.f2er.com/windows/364920.html

猜你在找的Windows相关文章