分类:
2008-07-30 21:48:49
用java调用windows系统的exe文件,比如notepad,calc之类:
public class Demo1 {
public static void runExe(){
String name = "notepad";
Runtime rn=Runtime.getRuntime();
Process p=null;
try{
p=rn.exec(name);
}catch(Exception e){
System.out.println("Error exec!");
}
}
}
调用其他的可执行文件,例如:自己制作的exe,或是下载安装的软件:
public class Demo2 {
public static void runExe(){
Runtime rn=Runtime.getRuntime();
Process p=null;
try{
p=rn.exec("D:\\storm.exe");
}catch(Exception e){
System.out.println("Error exec!");
}
}
}
转载:http://hi.baidu.com/coolcat_police/blog/item/96a7fe7ae6344eeb2f73b322.html