Java Data Type Tutorial - Java ProcessBuilder .redirectOutput ( ProcessBuilder .Redirect destination)








Syntax

ProcessBuilder.redirectOutput(ProcessBuilder.Redirect destination) has the following syntax.

public ProcessBuilder redirectOutput(ProcessBuilder.Redirect destination)

Example

In the following code shows how to use ProcessBuilder.redirectOutput(ProcessBuilder.Redirect destination) method.

/*w w  w . ja v  a 2 s  .  c  om*/
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.redirectOutput(ProcessBuilder.Redirect.from(new File("c:/")));
        pb.start();
      
      } catch (IOException ex) {
         ex.printStackTrace();
      }
   }
}