Executing a Command from Java and Waiting for the Command to Finish(从 Java 执行命令并等待命令完成)
问题描述
在我的 Java 程序中,我创建了一个执行命令以运行批处理文件的进程,如下所示:
In my Java program, I create a process that executes a command to run a batch file like this:
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);
}
现在,我希望发生的是命令
Now, what I would like to have happen is that the command
refreshActionPerformed(evt);
仅在我调用的批处理文件完成执行后运行.但是现在,它会在命令提示符打开后立即运行.
runs only after the batch file I called has finished executing. But right now, it runs immediately after the Command Prompt opens.
我该如何解决这个问题?
How do I fix this?
推荐答案
我设法在别处找到了答案.要在批处理文件完成之前保持初始进程打开,您只需要/wait"
I manged to find the answer elsewhere. To keep the initial process open until the batch file finished all you need is "/wait"
Process p = Runtime.getRuntime().exec("cmd /C start /wait filepath.bat");
int exitVal = p.waitFor();
这篇关于从 Java 执行命令并等待命令完成的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:从 Java 执行命令并等待命令完成


- 将 Java Swing 桌面应用程序国际化的最佳实践是什么? 2022-01-01
- 在 Java 中,如何将 String 转换为 char 或将 char 转换 2022-01-01
- 如何使 JFrame 背景和 JPanel 透明且仅显示图像 2022-01-01
- 转换 ldap 日期 2022-01-01
- 如何指定 CORS 的响应标头? 2022-01-01
- GC_FOR_ALLOC 是否更“严重"?在调查内存使用情况时? 2022-01-01
- Eclipse 的最佳 XML 编辑器 2022-01-01
- 获取数字的最后一位 2022-01-01
- 未找到/usr/local/lib 中的库 2022-01-01
- java.lang.IllegalStateException:Bean 名称“类别"的 BindingResult 和普通目标对象都不能用作请求属性 2022-01-01