我收到错误 - :"系统无法找到路径指定",同时运行远程批处理文件。请帮帮我。
先谢谢你。
sas.bat:
"D:\sas home\SASFoundation\9.3\sas.exe" -SYSIN c:\codeexcel.sas
cmd /k
Java代码:
public static void main(String arr[])
{
String cmd="cmd /c start \\\\xx.xx.xx.xx\\batch\\sas.bat";
try
{
Process r = Runtime.getRuntime().exec(cmd);
} catch (Exception e)
{
System.out.println("Execution error");
}
}
错误消息:
D:\sas home\SASFoundation\9.3\sas.exe" -SYSIN c:\codeexcel.sas
The system can not find the path Specified