• 生成验证码图片代码


    java1234,加入吧!

    image.jsp

    <%@ page contentType="image/jpeg"
     import="java.awt.*,
    java.awt.image.*,java.util.*,javax.imageio.*" pageEncoding="utf-8"%>
    <%!
    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);
    }
    %>
    <%
    out.clear();                           /*这句针对resin服务器,如果是tomacat可以不要这句*/
    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(getRandColor(200,250));
    g.fillRect(0, 0, width, height);
    g.setFont(new Font("Times New Roman",Font.PLAIN,18));
    g.setColor(getRandColor(160,200));
    for (int i=0;i<155;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 sRand="";
    for (int i=0;i<4;i++){
    String rand=String.valueOf(random.nextInt(10));
    sRand+=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
    session.setAttribute("sRand",sRand);
    g.dispose();
    ImageIO.write(image, "JPEG", response.getOutputStream());
    %>

    在需要验证码的页面中写如下代码:

    <input type="text" name="verifyCode" id="verifyCode"  size="10">
         <img onclick="javascript:loadImage();"  title="换一张试试" id="randImage"
         src="image.jsp" width="60" height="20" border="1" align="absmiddle">

  • 相关阅读:
    性能相关记录
    邮箱SMTP
    IntelliJ IDEA 14.1.7 安装激活
    pychram永久激活
    电脑的奇葩坑
    jmeter过程中的坑
    各数据库驱动连接配置
    spring定时器--时间设置规则
    linux redhat7.2下vim的安装与使用方法
    分数化小数
  • 原文地址:https://www.cnblogs.com/hualidezhuanshen/p/3263869.html
Copyright © 2020-2023  润新知