怎么使用Java来启动本地应用程序

如题所述

运行exe 文件
Java JDK里已经提供了调用的方法,不在累赘,代码如下。

try {
String command = "notepad";
Process child = Runtime.getRuntime().exec(command);
} catch (IOException e) {

}
这个也可以 Runtime.getRuntime().exec(wkspacePth + "/ReaderDevice.exe");
温馨提示:答案为网友推荐,仅供参考
相似回答