一、部分代码
try {
// 开始执行脚本...
Process ps = Runtime.getRuntime().exec("脚本命令文件名.bat");
if (ps.waitFor() != 0) {
// 执行失败
}
} catch (IOException | InterruptedException ioe) {
ioe.printStackTrace();
// 脚本执行失败
}
网友评论