I know that 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 and OutputStream current application I'm working on. (Current process).
How to get it?
source share