Java ProcessBuilder environment() 方法



描述

Java ProcessBuilder environment() 方法返回此进程构建器的环境的字符串映射视图。每当创建进程构建器时,环境都将初始化为当前进程环境的副本。随后由此对象的 start() 方法启动的子进程将使用此映射作为其环境。

声明

以下是java.lang.ProcessBuilder.environment() 方法的声明

public Map<String,String> environment()

参数

返回值

此方法返回此进程构建器的环境

异常

SecurityException − 如果存在安全管理器并且其 checkPermission 方法不允许访问进程环境

从 Process Builder 示例获取记事本的环境详细信息

以下示例显示了 ProcessBuilder environment() 方法的用法。在这个程序中,我们创建了一个字符串数组,并将 notepad.exe 和 test.txt 添加到其中。使用该列表,我们初始化了一个 ProcessBuilder 实例。现在使用 environment() 方法,我们检索了环境并打印了相应的映射值。

package com.tutorialspoint;

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:

从 Process Builder 示例获取计算器的环境详细信息

以下示例显示了 ProcessBuilder environment() 方法的用法。在这个程序中,我们创建了一个字符串数组,并将 calc.exe 添加到其中。使用该列表,我们初始化了一个 ProcessBuilder 实例。现在使用 environment() 方法,我们检索了环境并打印了相应的映射值。

package com.tutorialspoint;

import java.util.Map;

public class ProcessBuilderDemo {

   public static void main(String[] args) {

      // create a new list of arguments for our process
      String[] list = {"calc.exe"};

      // 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:

从 Process Builder 示例获取 Windows 资源管理器的环境详细信息

以下示例显示了 ProcessBuilder environment() 方法的用法。在这个程序中,我们创建了一个字符串数组,并将 explorer.exe 添加到其中。使用该列表,我们初始化了一个 ProcessBuilder 实例。现在使用 environment() 方法,我们检索了环境并打印了相应的映射值。

package com.tutorialspoint;

import java.util.Map;

public class ProcessBuilderDemo {

   public static void main(String[] args) {

      // create a new list of arguments for our process
      String[] list = {"explorer.exe"};

      // 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:
java_lang_processbuilder.htm
广告