Java ProcessBuilder .redirectOutput ( File file)

Syntax

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

public ProcessBuilder redirectOutput(File file)

Example

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


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




















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