首页 > 编程 > JSP > 正文

JSP任意长度验证码

2024-09-05 00:19:18
字体:
来源:转载
供稿:网友
中国最大的web开发资源网站及技术社区,

<%@page import="java.io.*,java.util.*,java.awt.*,java.awt.image.*,javax.imageio.*"%>
<%
/*
使用方法:在需要显示验证码的html代码中使用<img p">
  在需判断session的时候判断session.getattribute("rand")
*/
  int codelength=55;//验证码长度
  int mixtimes=0;//模糊程度参数
  color bgcolor=getrandcolor(200, 250);//背景颜色
  color bfcolor=new color(0,0,0);//字体颜色
  boolean ifrandomcolor=true;//单个字符是否颜色随机
  boolean ifmixcolor=false;//模糊线是否颜色随机


  //设置页面不缓存
  response.setheader("pragma", "no-cache");
  response.setheader("cache-control", "no-cache");
  response.setdateheader("expires", 0);
  // 在内存中创建图象
  int width = 13*codelength+6, height = 20;
  bufferedimage image = new bufferedimage(width, height,bufferedimage.type_int_rgb);
  // 获取图形上下文
  graphics g = image.getgraphics();
  // 设定背景色
  g.setcolor(bgcolor);
  g.fillrect(0, 0, width, height);
  //设定字体
  g.setfont(new font("times new roman", font.plain, 18));
  //画边框
  g.setcolor(new color(33,66,99));
  g.drawrect(0,0,width-1,height-1);
  // 随机产生干扰线,使图象中的认证码不易被其它程序探测到
  g.setcolor(getrandcolor(160, 200));
  for (int i = 0; i < mixtimes*codelength/10; i++) {
 if(ifmixcolor)
 {
  g.setcolor(getrandcolor(160, 200));
 }
 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);
  }
  // 取随机产生的认证码(4位数字)
  string srand = "";
  for (int i = 0; i < codelength; i++) {
    string rand = string.valueof(random.nextint(10));
    srand += rand;
    // 将认证码显示到图象中
 if(ifrandomcolor)
  g.setcolor(getrandcolor(20,110,0));
 else
  g.setcolor(bfcolor);
 //调用函数出来的颜色相同,可能是因为种子太接近,所以只能直接生成
    g.drawstring(rand, 13 * i + 6, 16);
  }
  // 将认证码存入session
  session.setattribute("rand", srand);
  // 图象生效
  g.dispose();
  // 输出图象到页面
  imageio.write(image, "png", response.getoutputstream());
%>
<%!
//给定范围获得随机颜色
private static random random=new random();
private color getrandcolor(int fc, int bc) {
  return getrandcolor(fc, bc, fc);
}
private color getrandcolor(int fc, int bc,int interval) {
  if (fc > 255) {
    fc = 255;
  }
  if (bc > 255) {
    bc = 255;
  }
  int r = fc + random.nextint(bc - interval);
  int g = fc + random.nextint(bc - interval);
  int b = fc + random.nextint(bc - interval);
  return new color(r, g, b);
}
%>

 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表