java.lang.Runtime.exec(String[] cmdarray)方法範例


java.lang.Runtime.exec(String[] cmdarray) 方法執行一個單獨的進程中指定的命令和引數。這是一個方便的方法。exec(cmdarray)呼叫行為完全相同於呼叫exec(cmdarray, null, null)。

宣告

以下是java.lang.Runtime.exec()方法的宣告

public Process exec(String[] cmdarray)

引數

  • cmdarray -- 呼叫及其引數包含命令陣列。

返回值

該方法返回一個新的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
         Process process = Runtime.getRuntime().exec(cmdArray);

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