您现在的位置:计算机技术学习网 > 技术中心 > WEB编程 > JSP >

学习学习JSP技术实现验证码

来源:互联网 责任编辑:栏目编辑 发表时间:2013-07-01 03:13 点击:

<%@ page contentType="image/jpeg" import="java.awt.image.*,java.util.*,java.awt.*,javax.imageio.*"%>
<%!
  Color getRandColor(int fc,int bc){
 Random random=new Random();
 if(fc>255) fc=255;
 if(bc>255) bc=255;
 
 int r=fc+random.nextInt(bc-fc);
 int g=fc+random.nextInt(bc-fc);
 int b=fc+random.nextInt(bc-fc);
 
 return new Color(r,g,b);
  }
%>
<%
  response.setHeader("Progma","no-cache");
  response.setHeader("Cache-Control","no-cache");
  response.setDateHeader("Expires",0);

  int i_width=60;
  int i_height=20;
 
  BufferedImage image=new BufferedImage(i_width,i_height,BufferedImage.TYPE_INT_RGB);
 
  Graphics g=image.getGraphics();

  Random random=new Random();

  g.setColor(getRandColor(200,250));
  g.fillRect(0,0,i_width,i_height);

  g.setFont(new Font("Times New Roman",Font.PLAIN,18));

  g.setColor(getRandColor(160,200));

  for(int i=0;i<155;i++){
 int i_x=random.nextInt(i_width);
 int i_y=random.nextInt(i_height);
 int i_x1=random.nextInt(12);
 int i_y1=random.nextInt(12);
 g.drawLine(i_x,i_y,i_x+i_x1,i_y+i_y1);
  }

  String s_Rand="";
  for(int i=0;i<4;i++){
 String rand=String.valueOf(random.nextInt(10));
 s_Rand+=rand;

 g.setColor(new Color(20+random.nextInt(110),20+random.nextInt(110),20+random.nextInt(110)));
 g.drawString(rand,13*i+6,16);
  }

  session.setAttribute("rand",s_Rand);

  g.dispose();

  ImageIO.write(image,"JPEG",response.getOutputStream());
%>
 

发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
用户名: 验证码:点击我更换图片
最新评论 更多>>

推荐热点

  • JSP与Servlet
  • 自己动手写MiniBBS系列(基本篇)之用户登录
  • JSP取当前日期
  • JDBC 入门(一)
  • 打开一个jsp页面默认查询所有数据,调用action
  • 使用JSP标签库验证用户的输入(2)完
  • 自定义JSP标签(tag)浅议
  • WIN98/2000下的jsp服务器
  • JSP内建对象(二)
网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
Copyright © 2008-2015 计算机技术学习交流网. 版权所有

豫ICP备11007008号-1