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 − 如果命令为 null
IllegalArgumentException − 如果命令为 empty
示例
下面的例子展示了 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.