java.lang.Runtime.exec(String command) 方法執行一個單獨的進程中指定的字串命令。這是一個方便的方法。exec(command)呼叫形式完全相同於呼叫exec(command, null, null)。
以下是java.lang.Runtime.exec()方法的宣告
public Process exec(String command)
command -- 指定的系統命令。
該方法返回一個新的Process物件,用於管理子進程
SecurityException -- 如果安全管理器存在,並且其checkExec方法不允許建立子進程
IOException -- 如果發生I/ O錯誤
NullPointerException -- 如果命令是null
IllegalArgumentException --如果命令是空的
下面的例子顯示lang.Runtime.exec()方法的使用。
package com.yiibai; public class RuntimeDemo { public static void main(String[] args) { try { // print a message System.out.println("Executing notepad.exe"); // create a process and execute notepad.exe Process process = Runtime.getRuntime().exec("notepad.exe"); // print another message System.out.println("Notepad should now open."); } catch (Exception ex) { ex.printStackTrace(); } } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
Executing notepad.exe Notepad should now open.