Mariam
Mariam

Reputation: 429

Error/Output streams with current java process

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 ?

Upvotes: 4

Views: 1237

Answers (1)

OpenSauce
OpenSauce

Reputation: 8623

You use System.out and System.err.

Upvotes: 11

Related Questions