ProcessBuilder.command(String ... command) has the following syntax.
public ProcessBuilder command(String ... command)
In the following code shows how to use ProcessBuilder.command(String ... command) method.
/*ww w . j a va2 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); // set the command list pb.command(list); // print the new command list System.out.println( pb.command()); } }
The code above generates the following result.