Java Runtime exec()方法
java.lang.Runtime.exec(String[] cmdarray) 方法执行一个单独的进程中指定的命令和参数。这是一个方便的方法。exec(cmdarray)调用行为完全相同于调用exec(cmdarray, null, null)。
1 语法
public Process exec(String[] cmdarray)
2 参数
cmdarray: 调用及其参数包含命令数组。
3 返回值
该方法返回一个新的Process对象,用于管理子进程
4 示例
这个例子需要在我们的CLASSPATH中的example.txt 文件包含以下内容:
Hello World!
下面的例子显示lang.Runtime.exec()方法的使用。
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java Runtime exec()方法
*/
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.
热门文章
优秀文章