Java Data Type Tutorial - Java ProcessBuilder.command()








Syntax

ProcessBuilder.command() has the following syntax.

public List <String> command()

Example

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

//from  w  ww . jav a2  s  .  c om

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");
      
      // create the process builder
      ProcessBuilder pb = new ProcessBuilder(list);
      
      // get the command list
      System.out.println(pb.command());

   }
}

The code above generates the following result.