java.lang.Runtime.exec(String[] cmdarray, String[] envp)方法实例
java.lang.Runtime.exec(String[] cmdarray, String[] envp) 方法执行在指定环境的独立进程中指定的命令和参数。这是一个方便的方法。调用exec(cmdarray, envp) 的行为完全相同于调用exec(cmdarray, envp, null)。
声明
以下是java.lang.Runtime.exec()方法的声明
public Process exec(String[] cmdarray, String[] envp)
参数
-
cmdarray -- 调用及其参数包含命令阵列。
-
envp -- 字符串数组,其中的每个元素都有其格式为name = value设置环境变量,则返回null,如果子进程应该继承当前进程的环境。
返回值
该方法返回一个新的Process对象,用于管理子进程
异常
-
SecurityException -- 如果安全管理器存在,并且其checkExec方法不允许创建子进程
-
IOException -- 如果发生I/ O错误
-
NullPointerException -- 如果命令为空
-
IndexOutOfBoundsException -- 如果cmdarray是一个空数组(长度为0)
例子
这个例子需要在我们的CLASSPATH文件 example.txt包含以下内容:
Hello World!
下面的例子显示lang.Runtime.exec()方法的使用。
package com.yiibai; public class RuntimeDemo { public static void main(String[] args) { try { // create a new array of 2 strings String[] cmdArray = new String[2]; // first argument is the program we want to open cmdArray[0] = "notepad.exe"; // second argument is a txt file we want to open with notepad cmdArray[1] = "example.txt"; // print a message System.out.println("Executing notepad.exe and opening example.txt"); // create a process and execute cmdArray and currect environment Process process = Runtime.getRuntime().exec(cmdArray,null); // print another message System.out.println("example.txt should now open."); } catch (Exception ex) { ex.printStackTrace(); } } }
让我们来编译和运行上面的程序,这将产生以下结果:
Executing notepad.exe and opening example.txt example.txt should now open.