How to embed an application (.exe etc) into a jsp page if a user clicks on the icon for the app on jsp.
It automatically opens the interface for the app.
It should seem as if the app is running on browser.
How do we do this?
How to embed an application (.exe etc) into a jsp page if a user
Share
Runtime rt = Runtime.getRuntime();
Process proc = rt.exec(“your app path”);