public static void main(String[] args) throws IOException {
String cmd = "notepad.exe"//要打开的尺滑外部程序路径
派指 Runtime runtime = Runtime.getRuntime()
Process p = runtime.exec(cmd)
}
}
以上为核心代码,自己可以把路径从外部传入,再打成一个陵羡腊可执行文件。
应该把Hello.exe 改成绝对路径例如 ("\"D:/AnyQ/Hello.exe\""游樱)用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")
}
}
}
调用其他的可执行陪樱文件,例如:自己制作的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/ceshi/ruanjianceshikaifajishu/rjcskfyy/java/2007/0714/139153.html
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)