错误/输出当前java进程的流



我知道要使用ErrorStreamOutputStream,需要执行以下

Process process = Runtime.getRuntime ().exec ("the command you want to execute");
OutputStream stdin = process.getOutputStream ();
InputStream stderr = process.getErrorStream ();

如果我不想开始一个新的过程,我想得到ErrorStream&我正在处理的当前应用程序的OutputStream。(当前进程)。

如何获取?

使用System.outSystem.err

相关内容

  • 没有找到相关文章

最新更新