JAVA写的方法,用来调用本地应用程序
public void openApp(){String url="C:\\WINDOWS\\system32\\calc.exe";try {Runtime.getRuntime().exec(url);} catch (IOException e) {// TODO: handle exceptione.printStackTrace();}}? 发布时间: 2012-12-25 16:18:28 作者: rapoo
JAVA写的方法,用来调用本地应用程序
public void openApp(){String url="C:\\WINDOWS\\system32\\calc.exe";try {Runtime.getRuntime().exec(url);} catch (IOException e) {// TODO: handle exceptione.printStackTrace();}}?