嘿,我试图从 java 程序中打开 IE。该命令start iexplorer
适用于命令提示符和终端,但在 java 程序中使用时会引发 IOException。当我执行命令cmd start iexplorer
时,程序只是在运行,几乎没有停止 15 分钟
String command = "cmd start iexplore";
try {
Process p = Runtime.getRuntime().exec(command);
p.waitFor();
} catch (IOException e) {
e.printStackTrace();
} catch (InterruptedException e) {
e.printStackTrace();
}
这是来自 VScode 的调用堆栈: image
有人可以帮我吗