多谢~~~

解决方案 »

  1.   

    <% Runtime.getRuntime().exec(String) %>  ??
    请问是这么写吗?我这边没有环境,无法调试
      

  2.   

    <%@pageimport="java.io.IOException"%>
    <%String path = "e:\\Project1.exe";
    try {
    Runtime.getRuntime().exec("cmd /c start " + path);
    } catch (IOException e) {
    e.printStackTrace();
    }
    %>
      

  3.   

    client? jsp runs on server side, try ActiveX...
      

  4.   

    jsp运行于服务器端,它也只能调用服务器端本地应用程序(通过Runtime.getRuntime().exec()),要调用客户端的应用程序只能通过ActiveX或Applet等来做
      

  5.   

    这个问题比较复杂噢
    jsp是运行于服务端的。