Java Data Type Tutorial - Java ProcessBuilder .redirectError (File file)








Syntax

ProcessBuilder.redirectError(File file) has the following syntax.

public ProcessBuilder redirectError(File file)

Example

In the following code shows how to use ProcessBuilder.redirectError(File file) method.

/*  ww w.  j  a  v a2  s .c  o  m*/
import java.io.File;
import java.io.IOException;

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);
      try {

        pb= pb.redirectError(new File("c:/"));
        pb.start();
      } catch (IOException ex) {
         ex.printStackTrace();
      }
   }
}