JAVA写的方法,用来调用本地应用程序
public void openApp(){String url="C:\\WINDOWS\\system32\\calc.exe";try {Runtime.getRuntime().exec(url);} catch (IOException e) {// TODO: handle exceptione.printStackTrace();}}