Java ProcessBuilder(List < String > command) Constructor

Syntax

ProcessBuilder(List < String > command) constructor from ProcessBuilder has the following syntax.

public ProcessBuilder(List <String> command)

Example

In the following code shows how to use ProcessBuilder.ProcessBuilder(List < String > command) constructor.


//www .  j a  v a2  s.  co  m

import java.io.IOException;
import java.util.ArrayList;
import java.util.List;

public class Main {

   public static void main(String[] args) {

      // create a new list of arguments for our process
      List<String> list = new ArrayList<String>();
      list.add("notepad.exe");
      list.add("test.txt");

      // create the process builder
      ProcessBuilder pb = new ProcessBuilder(list);
      try {
         // start the subprocess
         System.out.println("Starting the process..");
         pb.start();
      } catch (IOException ex) {
         ex.printStackTrace();
      }
   }
}

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