java 调用exeProcess p = Runtime.getRuntime().exec("");
                p.getInputStream();
                p.getOutputStream();
                p.getErrorStream();
Process p = Runtime.getRuntime().exec("");
returnValue = p.exitValue();

解决方案 »

  1.   

    可以调用本地的,用相对路径访问即可~~~Runtime.getRuntime().exec("MAC.exe");
      

  2.   

    Process p = Runtime.getRuntime().exec("");
                    p.getInputStream();
                    p.getOutputStream();
                    p.getErrorStream();
    Process p = Runtime.getRuntime().exec("");
    returnValue = p.exitValue();
      

  3.   

    不可能通过servlet/jsp来完成这个功能,只能通过applet来作。不是很现实