ローカルマシンからリモートシステムでバッチファイルを実行する必要があります。以下のコードを使用すると、次のエラーが発生します。
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();
}
}
}