當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.lang.Runtime.exec()用法及代碼示例



描述

這個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− 如果命令為空

  • IllegalArgumentException− 如果命令為空

示例

下麵的例子展示了 lang.Runtime.exec() 方法的用法。

package com.tutorialspoint;

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.

相關用法


注:本文由純淨天空篩選整理自 Java.lang.Runtime.exec() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。