Java执行exe,bat等可执行文件

来源:互联网 发布:好看兽人耽美文 知乎 编辑:程序博客网 时间:2024/05/16 05:00

http://www.zxbc.cn/html/20080728/63755.html

 

Java执行exe,bat等可执行文件的实现代码:

Process proc = Runtime.getRuntime().exec(command);

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class CallExe {
public static void main(String[] args) {
String text = null;
String command = ""C://WINDOWS//NOTEPAD.exe"";//exe,bat文件名OR DOS命令
try {
Process proc = Runtime.getRuntime().exec(command);
BufferedReader in = new BufferedReader(new InputStreamReader(proc.getInputStream()));
while ((text = in.readLine())!= null) {
System.out.println(text); //输出测试
}
} catch (IOException ioError) {
ioError.printStackTrace();
System.exit(0);
}
}

 

http://www.cujava.com/read.php?611