如果用户在jsp上单击应用程序的图标,如何将应用程序(.exe等)嵌入到jsp页面中。 它会自动打开应用程序的界面。 看起来应用程序似乎在浏览器上运行。 我们怎么做?
答案 0 :(得分:3)
如果要在客户端上运行程序,则无法执行此操作。见How can I run a program or batch file on the client side?
答案 1 :(得分:-6)
Runtime rt = Runtime.getRuntime(); 处理proc = rt.exec(“你的app路径”);