Java Runtime exec()方法
java.lang.Runtime.exec(String command) 方法执行一个单独的进程中指定的字符串命令。这是一个方便的方法。exec(command)调用形式完全相同于调用exec(command, null, null)。
1 语法
public Process exec(String command)
2 参数
command :指定的系统命令。
3 返回值
该方法返回一个新的Process对象,用于管理子进程
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java Runtime exec()方法
*/
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.
热门文章
优秀文章