Java ProcessBuilder directory()方法

java.lang.ProcessBuilder.directory() 方法返回此进程生成器的工作目录。子进程随后由该对象的start()方法将使用它作为自己的工作目录开始。返回值为null- 这意味着要使用当前Java进程的工作目录,通常是由系统属性user.dir目录,作为子进程的工作目录。

1 语法

public File directory()

2 参数

3 返回值

此方法返回此进程生成器的工作目录

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java ProcessBuilder directory()方法
 */
public class ProcessBuilderDemo {

   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);

      // get the working directory of the process
      System.out.println("" + pb.directory());
   }
}

输出结果为:

null

 

热门文章

优秀文章