我正在执行一个不返回任何内容的命令,而是在目录中创建一个zip文件。每当执行命令有问题时,应用程序都会进入挂起状态。我看到很多信息说我也应该删除ErrorStream,但是在我的用例中,我在StackOverflow上已经看到的所有代码都无法帮助我。 请注意以下我的代码。
在代码中,我运行命令,然后Java应用程序在必填字段中输入ID和密码,然后程序开始运行。
try {
process = Runtime.getRuntime().exec(SomeCommand);
try (Writer writer = new OutputStreamWriter(process.getOutputStream());
Reader reader = new InputStreamReader(process.getInputStream()) ) {
CharBuffer buf = CharBuffer.allocate(80);
int tries = 2;
while (process.isAlive()) {
while (reader.ready() && reader.read(buf) > 0) {
System.out.println(buf.flip());
buf.clear();
}
tries--;
if (tries == 0) {
writer.write(p);
writer.flush();
}
if (tries == 1) {
writer.write(h);
writer.flush();
}
while (!reader.ready()) {
Thread.sleep(1000);
if (!process.isAlive ()) {
// Code to update UI to reflect progress
process.destroy();
break;
}
}
}
}
} catch (Exception e) {
SubmitController.logger.warningMessage("Error>>> CommandController");
progressIndicator.isVisible();
}