我需要从本地计算机在远程系统上运行批处理文件。使用下面的代码,我收到以下错误:
Path not correct
我有机器的 IP 地址,我将批处理文件作为公共共享,共享名称是dsc
.
机器的IP地址是16.181.37.28。
这是我的代码。我知道路径是错误的。我怎样才能给出确切的路径?
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author padmaja
*/
import java.io.*;
class Test{
public static void main(String arg[]){
try{
String command = "cmd /C start 16.181.37.28/dsc/StartVisTsDataCenterMySql-log.bat";
Runtime rt = Runtime.getRuntime();
Process pr = rt.exec(command);
}catch (IOException e) {
e.printStackTrace();
}
}
}