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

发布于 2024-12-26 12:03:47 字数 404 浏览 1 评论 0原文

我知道使用 ErrorStreamOutputStream 你可以执行以下操作

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

身边 2025-01-02 12:03:47

您使用 System.out 和 System.err。

You use System.out and System.err.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文