java.lang.Runtime.exec(String[] cmdarray, String[] envp, File dir)方法實例
java.lang.Runtime.exec(String[] cmdarray, String[] envp, File dir) 方法執行在指定環境和工作目錄的獨立進程中指定的命令和參數。字符串給定一個數組cmdarray,代表一個命令行標記和一個字符串數組envp,代表“環境”變量設置,此方法創建要在其中執行指定的命令新的進程。
啟動操作係統的過程是高度依賴於係統的。在眾多的事情都可能出錯是:
-
未找到操作係統程序文件。
-
訪問該程序文件被拒絕。
-
工作目錄不存在。
在這種情況下,一個異常將被拋出。異常的確切性質取決於係統,但它永遠是IOException異常的子類。
聲明
以下是java.lang.Runtime.exec()方法的聲明
public Process exec(String[] cmdarray, String[] envp, File dir)
參數
-
cmdarray -- 調用及其參數包含命令數組。
-
envp -- 字符串數組,其中的每個元素都有其格式為name = value設置環境變量,則返回null,如果子進程應該繼承當前進程的環境。
-
dir -- 子進程的工作目錄,或null,如果子進程應該繼承當前進程的工作目錄。
返回值
該方法返回一個新的Process對象,用於管理子進程
異常
-
SecurityException -- 如果安全管理器存在,並且其checkExec方法不允許創建子進程
-
IOException -- 如果發生I/ O錯誤
-
NullPointerException --如果命令為空
-
IndexOutOfBoundsException -- 如果cmdarray是一個空數組(長度為0)
例子
此示例要求名為c:/test.txt在/文件夾C:/ folder :包含以下內容:
Hello
下麵的例子顯示lang.Runtime.exec()方法的使用。
package com.yiibai; import java.io.File; 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] = "test.txt"; // print a message System.out.println("Executing notepad.exe and opening test.txt"); // create a file which contains the directory of the file needed File dir = new File("c:/"); // create a process and execute cmdArray and currect environment Process process = Runtime.getRuntime().exec(cmdArray, null, dir); // print another message System.out.println("test.txt should now open."); } catch (Exception ex) { ex.printStackTrace(); } } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Executing notepad.exe and opening test.txt test.txt should now open.