在我的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);
仅在我调用的批处理文件完成执行后运行。但是现在,它在命令提示符打开后立即运行。
我该如何解决这个问题?
答案 0 :(得分:18)
我设法在其他地方找到答案。要使初始进程保持打开状态,直到批处理文件完成,您只需要“/ wait”
Process p = Runtime.getRuntime().exec("cmd /C start /wait filepath.bat");
int exitVal = p.waitFor();
答案 1 :(得分:2)
调用“cmd / c start”会导致cmd触发另一个实例并立即退出。尝试取出“开始”命令。
答案 2 :(得分:1)
给出的答案是正确的。我补充说,代码打开的窗口需要手动关闭。
react-native run-android