在jsp中有没有类似php的exec()函数?
我在Windows机器上运行Websphere App服务器。在jsp页面中单击链接时,我想调用一些.exe文件。
请告诉我jsp中是否有任何有助于执行外部程序的功能。
答案 0 :(得分:2)
你在这里:
Runtime rt=Runtime.getRuntime();
String cmd[]={"cmd.exe", "/C", "c:\\windows\\paint.exe"};
rt.exec(cmd);
答案 1 :(得分:1)