博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java生成验证码图片
阅读量:5285 次
发布时间:2019-06-14

本文共 1772 字,大约阅读时间需要 5 分钟。

public class AuthImg extends HttpServlet {
    /**
     *
     */
    private static final long serialVersionUID = 4975974534946437434L;
    // 设置图形验证码字符串的字体和大小
    private Font mFont = new Font("微软雅黑", Font.ITALIC, 18);
    private Random random = new Random();
    public void init() throws ServletException {
        super.init();
    }
    // 生成server响应的Service方法
    public void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        // 阻止生成的页面被缓存,保证每次都生成新的验证码
        response.setHeader("Pragma", "No-cache");
        response.setHeader("Cache-Control", "no-cache");
        response.setDateHeader("Expires", 0);
        response.setContentType("image/jpeg");
        // 指定验证码图片的大小
        int width = 80, height = 24;
        // 生成一张新的图片
        BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_3BYTE_BGR);
        // 在图片中绘制内容
        Graphics g = image.getGraphics();
        g.setColor(new Color(252, 252, 252));
        g.fillRect(1, 1, width, height);
        g.setColor(new Color(252, 252, 252));
        g.drawRect(0, 0, width, height);
        g.setFont(mFont);
        g.setColor(new Color(252, 252, 252));
        // 该变量用于保存系统生成的随机变量字符串
        String sRand = "";
        int colorR = random.nextInt(200);
        int colorG = random.nextInt(200);
        int colorB = random.nextInt(200);
        for (int i = 0; i < 4; i++) {
            // 取得一个随机字符串
            String tmp = getRandomChar();
            sRand += tmp;
            // 将系统生成的随机字符串加入到图片上
            g.setColor(new Color(colorR, colorG, colorB));
            g.drawString(tmp, 15 * i + 10, 20);
        }
        // 取得用户的Session
        HttpSession session = request.getSession(true);
        // 将系统生成的随机验证码加入到用户Session中
        session.setAttribute("rand", sRand);
        g.dispose();
        // 输出验证码图片
        ImageIO.write(image, "JPEG", response.getOutputStream());
    }
    // 生成随机字符串的方法
    private String getRandomChar() {
        int itmp = random.nextInt(10);
        return String.valueOf(itmp);
    }
}
posted on
2017-06-18 13:17 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/mthoutai/p/7044098.html

你可能感兴趣的文章
poj100纪念
查看>>
NetWork——关于TCP协议的三次握手和四次挥手
查看>>
An easy problem
查看>>
MauiMETA工具的使用(一)
查看>>
LeetCode: Anagrams 解题报告
查看>>
Qt 中获取本机IP地址
查看>>
070102_赌博设计:概率的基本概念,古典概型
查看>>
IT人生的价值和意义 感觉真的有了
查看>>
JS DOM对象
查看>>
OGR – Merging Multiple SHP files
查看>>
创业公司该不该被收购?(转)
查看>>
sqlserver 行转列、列转行[转]
查看>>
【IScroll深入学习】解决IScroll疑难杂症
查看>>
python 数据类型
查看>>
108-PHP类成员protected和private成员属性不能被查看数值
查看>>
css控制height充满浏览器视口
查看>>
python学习之 - XML
查看>>
Python--GIL 详解
查看>>
大道至简读后感(第四章)
查看>>
IDA IDC Tutorials: Additional Auto-Commenting
查看>>