用java实现外部调用exe文件

发表于:2007-07-14来源:作者:点击数: 标签:
1.0 用 java 调用 windows 系统的exe文件,比如notepad,calc之类: public class Demo{ public static void main(String args[]){ Runtime rn=Runtime.getRuntime(); Process p=null; try{ p=rn.exec(notepad); }catch(Exception e){ System.out.println("E
1.0 用java调用windows系统的exe文件,比如notepad,calc之类:
public class Demo{
public static void main(String args[]){
Runtime rn=Runtime.getRuntime();
Process p=null;

try{
p=rn.exec(notepad);
}catch(Exception e){
System.out.println("Error exec notepad");
}
}
}
2.0调用其他的可执行文件,例如:自己制作的exe,或是下载安装的软件
public class Demo{
public static void main(String args[]){
Runtime rn=Runtime.getRuntime();
Process p=null;

try{
p=rn.exec("\"D:/AnyQ/AnyQ.exe\"");
}catch(Exception e){
System.out.println("Error exec AnyQ");
}
}
}

原文转自:http://www.ltesting.net