从Java执行命令并等待命令完成
在我的Java程序中,我创建一个执行命令以运行批处理文件的过程,如下所示:
try { File tempFile = new File("C:/Users/Public/temp.cmd");
tempFile.createNewFile();
tempFile.deleteOnExit();
setContents(tempFile, recipe.getText()); //Writes some user input to file
String cmd = "cmd /c start " + tempFile.getPath();
Process p = Runtime.getRuntime().exec(cmd);
int exitVal = p.waitFor();
refreshActionPerformed(evt);
} catch (InterruptedException ex) {
Logger.getLogger(mainFrame.class.getName()).log(Level.SEVERE, null, ex);
} catch (IOException ex) {
Logger.getLogger(mainFrame.class.getName()).log(Level.SEVERE, null, ex);
}
现在,我想发生的是该命令
refreshActionPerformed(evt);
仅在我调用的批处理文件执行完毕后运行。但是现在,它会在命令提示符打开后立即运行。
我该如何解决?
回答:
我设法在其他地方找到答案。要保持初始过程打开,直到批处理文件完成,您需要的是“ / wait”
Process p = Runtime.getRuntime().exec("cmd /C start /wait filepath.bat");int exitVal = p.waitFor();
以上是 从Java执行命令并等待命令完成 的全部内容, 来源链接: utcz.com/qa/405335.html