91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在AJAX中利用Servlet處理數據并顯示

發布時間:2021-04-07 17:36:53 來源:億速云 閱讀:190 作者:Leah 欄目:web開發

今天就跟大家聊聊有關怎么在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、向服務器發送數據
    5、在回調函數中針對不同響應狀態進行處理
  */
    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狀態OK
        //5、在回調函數中針對不同響應狀態進行處理
          document.getElementById("sp").innerHTML = xmlHttp.responseText; //服務器的響應內容
        }else{
          alert("出錯:"+xmlHttp.statusText); //HTTP狀態碼對應的文本
        }
      }
    }
    /**
    //這是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向服務器發送數據
    }
    */
    /**
    *這是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中利用Servlet處理數據并顯示有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

花莲市| 鹤峰县| 陇西县| 瑞金市| 吉安市| 封丘县| 江孜县| 保山市| 疏附县| 桐柏县| 横峰县| 乌海市| 大同市| 湖北省| 彰化县| 金川县| 逊克县| 邻水| 维西| 鱼台县| 南丰县| 大荔县| 大港区| 凤庆县| 鄂伦春自治旗| 南木林县| 浦城县| 高密市| 平远县| 通江县| 宁南县| 琼中| 双江| 西充县| 文山县| 田林县| 林州市| 垦利县| 大连市| 十堰市| 泰兴市|