ajax經典應用案例 (jsp)
編輯:AJAX詳解  
寫index.JSP文件
<%@ page contentType="text/Html;charset=gb2312"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD Html 4.01 Transitional//EN">
<Html>
<head>
<title>My JSP ’index.JSP’ starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="description" content="This is my page">
<link rel="stylesheet" type="text/css" href="styles.CSS">
</head>
<body>
<script type="text/Javascript">
var req;
function validate() {
var idFIEld = document.getElementById("userid");
var url = "servlet/ValidateServlet?id=" + escape(idFIEld.value);
if (window.XMLHttpRequest) {
alert("0");
req = new XMLHttpRequest();
}else if (window.ActiveXObject) {
alert("1");
req = new ActiveXObject("Microsoft.XMLHTTP");
}
if(req){
req.open("GET", url, true);
req.onreadystatechange = callback;
req.send(null);
}
}
function callback() {
if (req.readyState == 4) {
if (req.status == 200) {
parseMessage();
// update the Html DOM based on whether or not message is valid
}else{
alert ("Not able to retrIEve description" + req.statusText);
}
}
}
function parseMessage() {
var message = req.responseXML.getElementsByTagName("message")[0];
var name = req.responseXML.getElementsByTagName("name")[0];
setMessage(message.firstChild.data,name.firstChild.data);
}
function setMessage(message,name) {
var userMessageElement = document.getElementById("userIdMessage");
userMessageElement.innerHtml = "<font color=\"red\">" + message + " you "+name+"</font>";
}
</script>
<div id="userIdMessage"></div>
<input type="text"
size="20"
id="userid"
name="id"
onkeyup="validate();">
</body>
</Html>
[2] 寫servlet/ValidateServlet.Java類
/*
* 創建日期 2005-8-3
*
* TODO 要更改此生成的文件的模板,請轉至
* 窗口 - 首選項 - Java - 代碼樣式 - 代碼模板
*/
package com;//com包需要自己創建.
import Java.io.IOException;
import Java.io.PrintWriter;
import Java.util.HashMap;
import Javax.servlet.ServletConfig;
import Javax.servlet.ServletContext;
import Javax.servlet.ServletException;
import Javax.servlet.http.HttpServlet;
import Javax.servlet.http.HttpServletRequest;
import Javax.servlet.http.HttpServletResponse;
/**
* @author Administrator
*
* TODO 要更改此生成的類型注釋的模板,請轉至
* 窗口 - 首選項 - Java - 代碼樣式 - 代碼模板
*/
public class ValidateServlet extends HttpServlet {
/**
* Constructor of the object.
*/
private ServletContext context;
private HashMap users = new HashMap();
public ValidateServlet() {
super();
}
/**
* Destruction of the servlet. <br>
*/
public void destroy() {
super.destroy(); // Just puts "destroy" string in log
// Put your code here
}
/**
* The doGet method of the servlet. <br>
*
* This method is called when a form has its tag value method equals to get.
*
* @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 doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/XML");
response.setHeader("Cache-Control", "no-cache");
String targetId = request.getParameter("id");
System.out.println(targetId.trim());
if ((targetId != null) && users.containsKey(targetId.trim())) {
response.getWriter().write("<info><message>welcome</message><name>sdl</name></info>");
} else {
response.getWriter().write("<info><message>kill</message><name>bush</name></info>");
System.out.print("invalid");
}
}
/**
* Initialization of the servlet. <br>
*
* @throws ServletException if an error occure
*/
public void init(ServletConfig config) throws ServletException {
this.context = config.getServletContext();
users.put("greg","account data");
users.put("duke","account data");
}
}
[3]寫web.xml文件<?XML version="1.0" encoding="UTF-8"?>
<web-app version="2.4"
XMLns="http://Java.sun.com/XML/ns/J2EE"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://Java.sun.com/XML/ns/J2EE
http://Java.sun.com/XML/ns/J2EE/web-app_2_4.xsd">
<servlet>
<description>This is the description of my J2EE component</description>
<display-name>This is the display name of my J2EE component</display-name>
<servlet-name>ValidateServlet</servlet-name>
<servlet-class>com.ValidateServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>ValidateServlet</servlet-name>
<url-pattern>/servlet/ValidateServlet</url-pattern>
</servlet-mapping>
</web-app>
[4]說明:
你可以在IE或Firefox裡測試,在文本輸入框裡輸入,當按鍵抬起,會在層中顯示”kill you bush”。其中index.htm中的styles.CSS只是美化頁面,沒有列出來源代碼。如果在servlet向客戶端輸出中文,需要編碼轉換。