加載頁面時自動打開另一個新頁面的並同時打開一個exe程序

打開新頁面
<SCRIPT>
  function OPENNEW(){
    window.open("path.jsp", "win2");
  }
</SCRIPT>

執行exe
<%@   page   language="java" contentType="text/html; charset=gb2312"  import="java.io.*"%>
<%      
 //當加載頁面時,就自動打開聊天程序 jzl 2007-2-26
 try{
  String username =(String)session.getAttribute("user_name");
  String passwd = request.getParameter("password");
  
  //String strAbsPath=application.getRealPath("");
  //String exeName = strAbsPath+"SendUdp.exe "+username+" "+passwd+" ";
     
  Runtime runtime = Runtime.getRuntime();      
  runtime.exec("c://ESDQQ.exe "+username+" "+passwd+" ");
  
  //runtime.exec(exeName);
  
  //String strAbsPath=application.getRealPath("");
  //strAbsPath = strAbsPath + "//";
  //out.println(strAbsPath);
  
 }catch(Exception e){
  //提示加載聊天程序出錯
  //out.print("<script>alert('加載聊天程序出錯!');</script>");
  //轉到下載頁面
  out.print("<script>window.open('downloadqq.html', 'win2');</script>");
 }
%>    

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章