我需要执行一个外部应用程序,它返回大数据(需要 2 多个小时才能完成)n 并持续输出数据。
我需要做的是异步执行这个程序并将输出捕获到一个文件中。我尝试使用 java process builder,但它似乎只在程序退出或强制终止时才会挂起并返回输出。
我尝试使用进程构建器并创建了一个新线程来捕获输出,但它仍然没有帮助。
然后我阅读了有关 apache commons exec 的信息并尝试了相同的操作。但是,这似乎也需要很长时间并返回不同的错误代码(对于相同的输入)
CommandLine cmdLine = new CommandLine("/opt/testsimulator");
DefaultExecuteResultHandler resultHandler = new DefaultExecuteResultHandler();
ByteArrayOutputStream stdout = new ByteArrayOutputStream();
PumpStreamHandler psh = new PumpStreamHandler(stdout);
ExecuteWatchdog watchdog = new ExecuteWatchdog(60*1000);
Executor executor = new DefaultExecutor();
executor.setStreamHandler(psh);
executor.setWatchdog(watchdog);
try {
executor.execute(cmdLine);
} catch (ExecuteException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
任何帮助或工作示例都非常有帮助