我知道要使用ErrorStream
或OutputStream
,需要执行以下
Process process = Runtime.getRuntime ().exec ("the command you want to execute");
OutputStream stdin = process.getOutputStream ();
InputStream stderr = process.getErrorStream ();
如果我不想开始一个新的过程,我想得到ErrorStream
&我正在处理的当前应用程序的OutputStream
。(当前进程)。
如何获取?
使用System.out
和System.err
。