Ajax+Struts2實現驗證碼驗證功能執行個體代碼_AJAX相關

來源:互聯網
上載者:User

眾所周知,驗證碼在我們的生活中都是非常常見的,很多公司都在各種折騰各種各樣的驗證碼,這裡簡要的用一個小案例來實現驗證碼的功能(ps:其實我挺討厭驗證碼這個東西的)。

今天分享的是通過ajax來動態驗證驗證碼輸入是否正確。我們這裡採用的是ajax+struts2來做的這個驗證。 我們建立一個web工程。然後需要匯入struts的相應包。之後我們需要寫一個類來產生驗證碼。

這裡命名為01_image.jsp,這類的主要功能就是產生驗證碼,裡面是各種畫線條,隨機數字等,我這裡設定的是5個數位驗證,如果你想要改成其他的也可以,大致思路就是在產生數位那個迴圈那裡加上字母就可以了。

<%@ page language="java" pageEncoding="UTF-8"%><%@ page contentType="image/jpeg" import="java.awt.*,java.awt.image.*,java.util.*,javax.imageio.*" %><%!public Color getColor(){Random random = new Random();int r = random.nextInt(256);//0-255int g = random.nextInt(256);int b = random.nextInt(256);return new Color(r,g,b);}public String getNum(){String str = "";Random random = new Random();for(int i=0;i<5;i++){str += random.nextInt(10);//0-9}return str;}%><%response.setHeader("pragma", "no-cache");response.setHeader("cache-control", "no-cache");response.setDateHeader("expires", 0);BufferedImage image = new BufferedImage(80,30,BufferedImage.TYPE_INT_RGB);Graphics g = image.getGraphics();g.setColor(new Color(200,200,200));g.fillRect(0,0,80,30);for (int i = 0; i < 50; i++) {Random random = new Random();int x = random.nextInt(80);int y = random.nextInt(30);int xl = random.nextInt(x+10);int yl = random.nextInt(y+10);g.setColor(getColor());g.drawLine(x, y, x + xl, y + yl);}g.setFont(new Font("serif", Font.BOLD,16));g.setColor(Color.BLACK);String checkNum = getNum();//"2525"StringBuffer sb = new StringBuffer();for(int i=0;i<checkNum.length();i++){sb.append(checkNum.charAt(i)+" ");//"2 5 2 5"}g.drawString(sb.toString(),15,20);session.setAttribute("CHECKNUM",checkNum);//2525//通過位元組輸出資料流輸出ImageIO.write(image,"jpeg",response.getOutputStream());out.clear();out = pageContext.pushBody();%>

接下來把輸入驗證碼的html頁面寫好,我這裡是些在了一個jsp檔案中的。命名為checkcode.jsp

<th>驗證碼:</th><td><input type="text" name="checkcode" id="checkcodeID" maxlength="5" /></td><td><img src="01_image.jsp" id="imgID" /></td><td id="resID"></td></tr> </table></form>

然後給這個檔案添加javascript代碼,這裡使用的當然就是一個ajax啦,對於ajax的編碼步驟之前已經寫的很詳細了,所以我們這裡就直接使用了。 對於ajax.js寫好後放到js目錄下面,然後再找個checkcode.jsp中引入中國js檔案 ajax.js的內容:

//建立AJAX非同步對象,即XMLHttpRequestfunction createAJAX(){var ajax = null;try{ajax = new ActiveXObject("microsoft.xmlhttp");}catch(e1){try{ajax = new XMLHttpRequest();}catch(e2){alert("你的瀏覽器不支援ajax,請更換瀏覽器");}}return ajax;}

然後就是chenkcode中的js內容了

//去掉兩邊的空格function trim(str){str=str.replace(/^\s*/,"");//從左側開始,把空格去掉str=str.replace(/\s*$/,""); //從右側開始,把K歌都去掉return str;}document.getElementById("checkcodeID").onkeyup=function(){var checkcode=this.value;checkcode=trim(checkcode);if(checkcode.length==5){var ajax=createAJAX();var method="POST";var url = "${pageContext.request.contextPath}/checkRequest?time="+new Date().getTime();ajax.open(method,url);//設定ajax要求標頭為post,它會將請求的漢字自動進行utf-8的編碼ajax.setRequestHeader("content-type","application/x-www-form-urlencoded");var content="checkcode="+checkcode;ajax.send(content);ajax.onreadystatechange=function(){if(ajax.readyState==4){if(ajax.status==200){var tip=ajax.responseText;var img=document.createElement("img");img.src=tip;img.style.width="14px";img.style.height="14px";var td=document.getElementById("resID");td.innerHTML="";td.appendChild(img);}} } }else{var td=document.getElementById("resID");td.innerHTML="";}}

然後開始寫伺服器端的代碼,進行校正的話就需要這樣的一個類了:

package cn.tf.checkcode;import java.io.IOException;import java.io.PrintWriter;import javax.servlet.http.HttpServletResponse;import org.apache.struts2.ServletActionContext;import com.opensymphony.xwork2.ActionContext;import com.opensymphony.xwork2.ActionSupport;//驗證碼檢查public class CheckcodeAction extends ActionSupport{private String checkcode;public void setCheckcode(String checkcode) {this.checkcode = checkcode;}/*** 驗證* @throws IOException */public String check() throws IOException {//圖片路徑String tip="images/a.jpg";//從伺服器擷取session中的驗證碼String checkcodeServer=(String) ActionContext.getContext().getSession().get("CHECKNUM");if(checkcode.equals(checkcodeServer)){tip="images/b.jpg";}//以IO流的方式將tip變數輸出到ajax非同步對象中HttpServletResponse response=ServletActionContext.getResponse();response.setContentType("text/html;charset=UTF-8");PrintWriter pw=response.getWriter();pw.write(tip);pw.flush();pw.close();return null;}}

最後在struts.xml檔案中寫入相應的方法。

<struts><package name="myPackage" extends="struts-default" namespace="/"> <action name="checkRequest" class="cn.tf.checkcode.CheckcodeAction" method="check"></action></package></struts>

運行結果如下:驗證成功則返回綠色的小勾,錯誤則紅色的叉。

以上所述是小編給大家介紹的Ajax+Struts2實現驗證碼驗證功能執行個體代碼,希望對大家有所協助,如果大家有任何疑問請給我留言,小編會及時回複大家的。在此也非常感謝大家對雲棲社區網站的支援!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.