Java ProcessBuilder environment()方法
java.lang.ProcessBuilder.environment() 方法返回此进程生成器环境的字符串映射视图。每当创建一个进程生成器,环境被初始化为当前进程环境的一个副本。子进程随后由该对象的start()方法将使用此图作为自己的环境开始。
1 语法
public Map<String,String> environment()
2 参数
无
3 返回值
此方法返回此进程生成器的环境
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java ProcessBuilder environment()方法
*/
import java.util.Map;
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 environment of the process
Map<String, String> env = pb.environment();
// get the system drive of the environment
System.out.println("" + env.get("SystemDrive"));
}
}
输出结果为:
C:
热门文章
优秀文章