主頁 > 知識庫 > AJAX+Servlet實現的數據處理顯示功能示例

AJAX+Servlet實現的數據處理顯示功能示例

熱門標簽:福建微碼電話機器人 廣西智能外呼系統(tǒng)多少錢 荊州智能電銷機器人 外呼系統(tǒng)api對接 提高電話機器人接通率 大學校門地圖標注 平涼高德地圖標注商戶要收費嗎 銷售電銷機器人詐騙 地圖標注與公司業(yè)務關系

本文實例講述了AJAX+Servlet實現的數據處理顯示功能。分享給大家供大家參考,具體如下:

實現功能:在輸入框中輸入字符,用AJAX傳到后臺Servlet處理后加上隨機數,并返回到前臺顯示。

一、寫前臺jsp頁面index.jsp

%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
html>
 head>
  title>My JSP 'index.jsp' starting page/title>
  script type="text/javascript">
  /*
    ajax 的幾個步驟:
    1、建立XmlHttpRequest對象
    2、設置回調函數
    3、使用Open方法建立與服務器的連接
    4、向服務器發(fā)送數據
    5、在回調函數中針對不同響應狀態(tài)進行處理
  */
    var xmlHttp;
    function createXMLHttpRequest(){  //1建立XmlHttpRequest對象
      if(window.ActiveXObject){
        try{
          xmlHttp = new ActiveXObject("Microsoft.XMLHttp");
        }catch(e){
          alert("Error!!!");
        }
      }else{
        xmlHttp = new XMLHttpRequest();
      }
    }
    function showMes(){   //2設置回調函數
      if(xmlHttp.readyState==4){ //數據接收完成并可以使用
        if(xmlHttp.status==200){ //http狀態(tài)OK
        //5、在回調函數中針對不同響應狀態(tài)進行處理
          document.getElementById("sp").innerHTML = xmlHttp.responseText; //服務器的響應內容
        }else{
          alert("出錯:"+xmlHttp.statusText); //HTTP狀態(tài)碼對應的文本
        }
      }
    }
    /**
    //這是GET方法傳送
    function getMes(){
      createXMLHttpRequest();
      var txt = document.getElementById("txt").value;
      var url="servlet/AjaxServlet?txt="+txt;
      url = encodeURI(url); //轉換碼后再傳輸
      xmlHttp.open("GET",url,true); //3使用Open方法建立與服務器的連接
      xmlHttp.onreadystatechange=showMes;
      xmlHttp.send(null); //4向服務器發(fā)送數據
    }
    */
    /**
    *這是post方法
    */
    function postMes(){
      createXMLHttpRequest();
      var txt = document.getElementById("txt").value;
      var url = "servlet/AjaxServlet";
      var params = "username="+txt;
    // alert(params);
      xmlHttp.open("POST",url,true);
      xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded;charset=UTF-8");
      xmlHttp.send(params);
      xmlHttp.onreadystatechange = showMes;
    }
  /script>
 /head>
 body>
  input type="text" id="txt"/>
  input type="button" value="query" onclick="postMes()" />
  span id="sp">/span>
 /body>
/html>

二、寫后臺Servlet加random隨機數,關鍵代碼如下:

public void doGet(HttpServletRequest request, HttpServletResponse response)
      throws ServletException, IOException {
    request.setCharacterEncoding("utf-8"); //用utf-8轉換獲得傳輸過來的碼
    response.setContentType("text/html");
    PrintWriter out = response.getWriter();
    String txt = request.getParameter("txt");
//   String tx = new String(txt.getBytes("iso-8859"),"utf-8");
    out.print("txt="+txt+Math.random());
    out.flush();
    out.close();
}
/**
* The doPost method of the servlet. br>
*
* This method is called when a form has its tag value method equals to post.
*
* @param request the request send by the client to the server
* @param response the response send by the server to the client
* @throws ServletException if an error occurred
* @throws IOException if an error occurred
*/
public void doPost(HttpServletRequest request, HttpServletResponse response)
      throws ServletException, IOException {
    request.setCharacterEncoding("utf-8");
    response.setContentType("text/html;charset=UTF-8");
    PrintWriter out = response.getWriter();
    String username = request.getParameter("username");
//   String txt = new String(username.getBytes("ISO-8859-1"),"UTF-8");
    String txt = new String(username);
    out.print("txt="+txt+":"+Math.random());
    out.flush();
    out.close();
}

更多關于ajax相關內容感興趣的讀者可查看本站專題:《jquery中Ajax用法總結》、《JavaScript中ajax操作技巧總結》、《PHP+ajax技巧與應用小結》及《asp.net ajax技巧總結專題》

希望本文所述對大家ajax程序設計有所幫助。

您可能感興趣的文章:
  • Servlet3.0與純javascript通過Ajax交互的實例詳解
  • 淺談ajax在jquery中的請求和servlet中的響應
  • Servlet獲取AJAX POST請求中參數以form data和request payload形式傳輸的方法
  • 實例解讀Ajax與servlet交互的方法
  • jquery請求servlet實現ajax異步請求的示例
  • 使用jquery 的ajax 與 Java servlet的交互代碼實例

標簽:黔東 邯鄲 海南 樂山 婁底 德陽 內江 衡陽

巨人網絡通訊聲明:本文標題《AJAX+Servlet實現的數據處理顯示功能示例》,本文關鍵詞  AJAX+Servlet,實現,的,數據處理,;如發(fā)現本文內容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內容系統(tǒng)采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《AJAX+Servlet實現的數據處理顯示功能示例》相關的同類信息!
  • 本頁收集關于AJAX+Servlet實現的數據處理顯示功能示例的相關信息資訊供網民參考!
  • 推薦文章