Jsp servlet驗證碼工具類分享
昨晚在csdn看到一位前輩寫一個ajax+servlet+jsp驗證,頓時心血來潮,在閱讀前輩的代碼下我親手體驗一下,做了一個驗證碼生成工具類,以供大家做個參考。
1、添加veriycodeutils類生成驗證碼圖像
package com.servlet; import java.awt.color; import java.awt.font; import java.awt.graphics2d; import java.awt.image.bufferedimage; import java.io.outputstream; import java.util.random; import javax.imageio.imageio; /** * * @author hubiao * 驗證碼生成器 * 用到api * bufferedimage 創(chuàng)建一個圖像 * graphics2d 繪制 * fillrect(x,y,width,height);背景 * font()字體 * drawrect();邊框 * drawline();線 * drwastring:圖像數(shù)據(jù) * imageio 生成圖像 */ public class veriycodeutils { /** * @param output 保存驗證圖像的流 * @return 驗證碼 */ public static string newveriycode(outputstream output) { int width = 90; int height = 40; int codecount = 5; char[] codesequence = { 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' }; //創(chuàng)建圖像對象,8位rgb bufferedimage buffered = new bufferedimage(width, height, bufferedimage.type_int_rgb); //通過crapahices來繪制圖像到bufferedimage中 graphics2d gra = buffered.creategraphics(); //設置圖片背景:白色 gra.setcolor(color.white); gra.fillrect(0, 0, width, height); //設置字體,字體大小根據(jù)圖片高度決定 gra.setfont(new font("fixedsys",font.plain,height-2)); //設置邊框:黑色,1cm gra.setcolor(color.black); gra.drawrect(0, 0, width-1, height-1); //生成10條黑色干擾線 gra.setcolor(color.black); random ran = new random(); for(int i = 0; i < 70;i++) { int x = ran.nextint(255); int y = ran.nextint(255); int x1 = ran.nextint(255); int y1 = ran.nextint(255); gra.drawline(x, y,x+x1, y+y1);//畫直線 } //生成驗證碼 stringbuffer sb = new stringbuffer(); int r = 0,g = 0,b = 0; for(int i = 0; i < codecount; i++) { string strrand = string.valueof(codesequence[ran.nextint(codesequence.length)]); //對每位驗證碼都生成不同的顏色,增加識別系統(tǒng)難度 r = ran.nextint(255); g = ran.nextint(255); b = ran.nextint(255); gra.setcolor(new color(r, g, b)); gra.drawstring(strrand, (i+1)*13, height-4); sb.append(strrand); } try { imageio.write(buffered, "jpeg", output); } catch (exception e) { throw new runtimeexception(e); } return sb.tostring(); } }
2、servlet使用驗證碼
protected void dopost(httpservletrequest req, httpservletresponse resp) throws servletexception, ioexception { //禁止圖像緩存 resp.setheader("pragma", "no-cache"); resp.setheader("cache-control", "no-cache"); resp.setdateheader("expires", 0); resp.setcontenttype("image/jpeg"); //生成驗證碼圖像 string veriycode = veriycodeutils.newveriycode(resp.getoutputstream()); //將驗證碼保存到session中 httpsession session = req.getsession(); session.setattribute("validatecode", veriycode); }
3、jsp頁面使用驗證碼
</head> <script type="text/javascript"> function createcode() { var t = new date().gettime();//防止頁面緩存,使用時間搓 var srcimg = document.getelementbyid("srcimg"); srcimg.src="/imgveifyweb/vity.do?"+t; } </script> <body> <h1>${requestscope.code}</h1> <img id="srcimg" src="<c:url value="/vity.do"></c:url>" /> #這里使用直接讓img訪問servlet,通過response響應一個圖像流 <a href="##" rel="external nofollow" id="codeid" onclick="createcode()">換一張</a> <form action="<c:url value="/hello.do"></c:url>" method="post"> <input type="text" name="codevify"/> <input type="submit" value="提交"/> </form> </body>
4、校驗驗證碼
protected void dopost(httpservletrequest req, httpservletresponse resp) throws servletexception, ioexception { httpsession session = req.getsession(); object validatecode = session.getattribute("validatecode"); system.out.println(validatecode); string codevify = req.getparameter("codevify"); if(codevify==null || codevify.equals("")) { req.setattribute("code","驗證證不能為空"); req.getrequestdispatcher("/index.jsp").forward(req, resp); return; }else if(!validatecode.tostring().equalsignorecase(codevify)) { req.setattribute("code","驗證證錯誤"); req.getrequestdispatcher("/index.jsp").forward(req, resp); return; } system.out.println("下面開始 做其他業(yè)務操作...."); }
校驗圖如下:
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持碩編程。
相關文章
- jsp+servlet實現(xiàn)文件上傳與下載功能
- EJB3.0部署消息驅動Bean拋javax.naming.NameNotFoundException異常
- 在JSP中使用formatNumber控制要顯示的小數(shù)位數(shù)方法
- 秒殺系統(tǒng)Web層設計的實現(xiàn)方法
- 將properties文件的配置設置為整個Web應用的全局變量實現(xiàn)方法
- JSP使用過濾器防止Xss漏洞
- 在JSP頁面中動態(tài)生成圖片驗證碼的方法實例
- 詳解JSP 內置對象request常見用法
- 使用IDEA編寫jsp時EL表達式不起作用的問題及解決方法
- jsp實現(xiàn)局部刷新頁面、異步加載頁面的方法
- Jsp中request的3個基礎實踐
- JavaServlet的文件上傳和下載實現(xiàn)方法
- JSP頁面的靜態(tài)包含和動態(tài)包含使用方法