HI
i want to run jar file from JSP page.
I have putted this jar file and related files on SRC directory of my webapplication.
and i tried this code in my jsp page.
<% Process p=null; try { Runtime runtime=Runtime.getRuntime(); p=runtime.exec("java -jar .\\src\\java\\Sphinx4\\Sphinx.jar .\\src\\java\\Sphinx4\\agmark_iitb.config.xml .\\src\\java\\Sphinx4\\agmark_iitb.batch"); Thread.sleep(19000); } catch(Exception e) { out.println("Error to run file!"); } %>
But does not get run!!!
How can i run this jar file?
Thanks for your time.