当前 java 进程的错误/输出流
我知道使用 ErrorStream
或 OutputStream
你可以执行以下操作
Process process = Runtime.getRuntime ().exec ("the command you want to execute");
OutputStream stdin = process.getOutputStream ();
InputStream stderr = process.getErrorStream ();
如果我不想启动新进程,我想获取 ErrorStream
怎么办> &我正在处理的当前应用程序的OutputStream
。 (当前进程)。
如何获得?
I know to use ErrorStream
or OutputStream
you do the following
Process process = Runtime.getRuntime ().exec ("the command you want to execute");
OutputStream stdin = process.getOutputStream ();
InputStream stderr = process.getErrorStream ();
What if I don't want to start a new process, I want to get the ErrorStream
& OutputStream
of the current application I am working on. (The current process).
How to get it ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用 System.out 和 System.err。
You use
System.out
andSystem.err
.