1.0 用java调用windows系统的exe文件,比如notepad,calc之类:
(本文来源于图老师网站,更多请访问https://m.tulaoshi.com/bianchengyuyan/)
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{(本文来源于图老师网站,更多请访问https://m.tulaoshi.com/bianchengyuyan/)
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");
}
}
}