Java ProcessBuilder command()方法

java.lang.ProcessBuilder.command(List<String> command) 方法设置此进程生成器的操作系统程序和参数。此方法不会使命令列表的副本。后续更新的名单将反映在进程生成器的状态。它不检查command是否为一个有效的操作系统命令。

1 语法

public ProcessBuilder command(List<String> command)

2 参数

command :包含程序和它的参数列表

3 返回值

此方法返回此进程生成器

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Enum compareTo()方法
 */
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;

public class ProcessBuilderDemo {

   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 a new list that contains a file to open with notepad
      List<String> list2 = new ArrayList<String>();
      list.add("text.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());
   }
}

输出结果为:

[notepad.exe, text.txt]

 

热门文章

优秀文章