我知道您使用ErrorStream
或OutputStream
执行以下操作
Process process = Runtime.getRuntime ().exec ("the command you want to execute");
OutputStream stdin = process.getOutputStream ();
InputStream stderr = process.getErrorStream ();
如果我不想开始新流程怎么办,我希望得到ErrorStream
&我正在处理的当前应用程序的OutputStream
。 (目前的流程)。
如何获得它?
答案 0 :(得分:11)
您使用System.out
和System.err
。