我需要从本地计算机上运行批处理文件在远程系统上。使用以下代码,我得到以下错误:
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();
}
}
}