stderr
output to stdout
. Use this either when not sure which stream an external program writes its output to (some programs, like avr-size.exe write their help output to stderr), or when you like any error messages inserted into the normal output stream for analysis
Note: The redirection takes place at system level, so a command output listener will only receive the mixed output.
@see ProcessBuilder#redirectErrorStream(boolean) @param redirecttrue
to redirect stderr
to stdout
If this property is true
, then any error output generated by subprocesses subsequently started by this object's {@link #start()} method will be merged with the standardoutput, so that both can be read using the {@link Process#getInputStream()} method. This makes it easierto correlate error messages with the corresponding output. The initial value is false
.
redirectErrorStream
property
|
|
|
|
|
|