用户注册



邮箱:

密码:

用户登录


邮箱:

密码:
记住登录一个月忘记密码?

发表随想


还能输入:200字
云代码 - jsp代码库

jsp 验证码

2013-03-31 作者: 海大软件1102班举报

[jsp]代码库

<%@  page  contentType="image/jpeg" %>
<%@  page import ="java.awt.*, java.awt.image.*"%>
<%@  page import ="java.util.* , javax.imageio.*"%>
<%!
//产生随机颜色函数getRandColor
Color  getRandColor (int  fc , int  bc){
    Random  r=new  Random();
    if(fc>255)  fc=255;
    if(bc>255)   bc=255;
    int red=fc+r.nextInt(bc-fc);
    int green=fc+r.nextInt(bc-fc);
    int blue=fc+r.nextInt(bc-fc);
    return new Color(red,green,blue);
}
%>
<%
//设置页面不缓存
response.setHeader("Pragma","No-cache");
response.setHeader("Cache-Control","no-cache");
response.setHeader("Expires",0);
//创建随机类
Random r=new Random();
//在内存中创建图像,宽为width,高为height
int  width=60 , height=20;
BufferedImage  pic= new  BufferedImage(width , height , BufferedImage_TYPE_INT_RGB);
//获取图形上下文环境
Graphics  gc=pic.getGraphics();
//设定背景颜色并进行填充
gc.setColor(getRandColor(200,250));
gc.fillRect(0,0,width,height);
//设定图形上下文环境字体
gc.setFont(new Font("Times New Roman", Font.PLAIN , 18));
//随机产生200条干扰直线,使图像中的认证码不被其他分析程序探测到
gc.setColor(getRandColor(160,200));
for(int  i=0;i<200;i++){
    int  x1=r.nextInt(width);
    int y1=r.nextInt(height);
    int x2=r.nextInt(15);
    int y2=r.nextInt(15);
    gc.drawLine(x1 , y1, x1+x2 , y1+y2);
}
//随机产生100个干扰点,使图像不易被其他分析程序探测到
gc.setColor(getRandColor(120,240));
for(int i=0;i<100;i++){
    int x=r.nextInt(width);
    int y=r.nextInt(height);
    gc.drawOval(x , y , 0 , 0);
}
//随机产生4位数字的验证码
String  RS="" , rn="";
for(int i=0;i<4;i++){
    //产生10以内的随机数字rn
    rn=String.valueOf(r.nextInt(10));
    RS+=rn;
    //将验证码用drawString 函数显示在图像里
    gc.drawString(rn , 13*i+6 , 16);
//释放图形上下文环境
gc.dispose();
//将验证码RS存入SESSION 中共享
session.setAttribute("random" , RS);
//输出生成后的验证码图像到页面
ImageIO.write(pic , "JPEG" , response.getOutputStream());
%>


网友评论    (发表评论)


发表评论:

评论须知:

  • 1、评论每次加2分,每天上限为30;
  • 2、请文明用语,共同创建干净的技术交流环境;
  • 3、若被发现提交非法信息,评论将会被删除,并且给予扣分处理,严重者给予封号处理;
  • 4、请勿发布广告信息或其他无关评论,否则将会删除评论并扣分,严重者给予封号处理。


扫码下载

加载中,请稍后...

输入口令后可复制整站源码

加载中,请稍后...