Java ProcessBuilder .redirectErrorStream ( boolean redirectErrorStream)

Syntax

ProcessBuilder.redirectErrorStream(boolean redirectErrorStream) has the following syntax.

public ProcessBuilder redirectErrorStream(boolean redirectErrorStream)

Example

In the following code shows how to use ProcessBuilder.redirectErrorStream(boolean redirectErrorStream) method.


//from w w w.  j  a v a 2s .  c  o  m
public class Main {

   public static void main(String[] args) {

      // create a new list of arguments for our process
      String[] list = {"notepad.exe", "test.txt"};

      // create the process builder
      ProcessBuilder pb = new ProcessBuilder(list);

      // Redirect the error stream
      pb.redirectErrorStream(true);
      System.out.println(pb.redirectErrorStream());
   }
}

The code above generates the following result.





















Home »
  Java Tutorial »
    java.lang »




Boolean
Byte
Character
Class
Double
Enum
Float
Integer
Long
Math
Number
Object
Package
Process
ProcessBuilder
Runnable
Runtime
SecurityManager
Short
StackTraceElement
StrictMath
String
StringBuffer
StringBuilder
System
Thread
ThreadGroup
ThreadLocal
Throwable