运行远程批处理文件时,系统找不到指定的路径

时间:2015-10-01 08:56:54

标签: java batch-file cmd sas

我收到错误 - :"系统无法找到路径指定",同时运行远程批处理文件。请帮帮我。

先谢谢你。

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

0 个答案:

没有答案