当前位置: 技术问答>java相关
java中用什么方法调用外部可执行文件?
来源: 互联网 发布时间:2015-02-15
本文导语: 比如我想运行c:sample.exe,应该用什么方法? | 试试下面代码: String command = "test.bat"; runtime= Runtime.getRuntime(); result = runtime.exec(command);
比如我想运行c:sample.exe,应该用什么方法?
|
试试下面代码:
String command = "test.bat";
runtime= Runtime.getRuntime();
result = runtime.exec(command);
String command = "test.bat";
runtime= Runtime.getRuntime();
result = runtime.exec(command);