java中調用shell腳本的方法:1、在java項目中能夠通過ProcessBuilder進行調度shell腳本,參數設置相對簡單;2、還能夠通過系統Runtime執行shell腳本,但在參數設置上需要添加空格將兩個參數分開。
具體內容如下:
1、通過ProcessBuilder進行調度,這種方法比較直觀,而且參數的設置也比較方便。
ProcessBuilder pb = new ProcessBuilder("./" + RUNNING_SHELL_FILE, param1,param2, param3);
pb.directory(new File(SHELL_FILE_DIR));
int runningStatus = 0;
String s = null;
try {
Process p = pb.start();
try {
runningStatus = p.waitFor();
} catch (InterruptedException e) {
}
} catch (IOException e) {
}
if (runningStatus != 0) {
}
return;
2、通過系統Runtime執行shell腳本,而通過Runtime的方式并沒有builder那么方便,特別是參數方面,必須自己加空格分開,因為exec會把整個字符串作為shell運行。
p = Runtime.getRuntime().exec(SHELL_FILE_DIR + RUNNING_SHELL_FILE + " "+param1+" "+param2+" "+param3);p.waitFor();