JSP动态生成验证码分享


(1)在登录应用中,为防止恶意登录,常常需要服务器动态生成验证码并存储在session作用范围中,最后以图像形式返回给客户端显示

(2)下边的代码实现的功能:写一个JSP页,动态生成一个验证码,存储在session作用范围内,并以图像形式返回给客户端显示。

另写一个JSP页面,引用此JSP页面生成的验证码;

authen.jsp代码如下:

<%@ page import="java.awt.*,java.awt.image.*,java.util.*,com.sun.image.codec.jpeg.*" %> <%! //根据提供的ab产生随机的颜色变化范围 Color getColor(int a,int b){         int n=b-a; 		Random rd=new Random(); 		int cr=a+rd.nextInt(n); 		int cg=a+rd.nextInt(n); 		int cb=a+rd.nextInt(n); 		         return new Color(cr,cg,cb);         } %> <%   //下边三行取消客户端游览器缓存验证码的功能 response.setHeader("Pragma","No-cache"); response.setHeader("Cache-Control","no-cache"); response.setDateHeader("Expires", 0);  int width=60, height=20; //在内存中生成一个图像 BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);   Graphics g = image.getGraphics();  Random random = new Random();  g.setColor(getColor(200,250)); g.fillRect(0, 0, width, height);  g.setFont(new Font("Times New Roman",Font.BOLD,18));  g.setColor(getColor(160,200)); for (int i=0;i<160;i++) { int x = random.nextInt(width); int y = random.nextInt(height);         int xl = random.nextInt(12);         int yl = random.nextInt(12); g.drawLine(x,y,x+xl,y+yl); }  String number=String.valueOf(1000+random.nextInt(8999)); String name=request.getParameter("name"); session.setAttribute(name,number);  g.setColor(getColor(20,130)); int x=(int)(width*0.2); int y=(int)(height*0.8); g.drawString(number,x,y); g.dispose();  JPEGImageEncoder   encoder=JPEGCodec.createJPEGEncoder(response.getOutputStream());           encoder.encode(image);        out.close();       %> 

再建一个test.jsp页面 调用验证码:

<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %> 

www.ctvol.com true Article JSP动态生成验证码分享

本文来自网络收集,不代表计算机技术网立场,如涉及侵权请联系管理员删除。

ctvol管理联系方式QQ:251552304

本文章地址:https://www.ctvol.com/jspttutorial/112234.html

(0)
上一篇 2020年5月8日 下午4:09
下一篇 2020年5月8日 下午4:11

精彩推荐