生成验证码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了生成验证码相关的知识,希望对你有一定的参考价值。

@RequestMapping("/captcha.jpg") public void captcha(HttpServletResponse response) throws ServletException, IOException { response.setHeader("Cache-Control", "no-store, no-cache"); response.setContentType("image/jpeg"); // 生成文字验证码 String text = producer.createText(); // 生成图片验证码 BufferedImage image = producer.createImage(text); // 保存到shiro session ShiroUtils.setSessionAttribute(Constants.KAPTCHA_SESSION_KEY, text); ServletOutputStream out = response.getOutputStream(); ImageIO.write(image, "jpg", out); }

以上是关于生成验证码的主要内容,如果未能解决你的问题,请参考以下文章

用App生成验证码的方式取代手机短信验证码方式?

验证码识别与生成类API调用的代码示例合集:六位图片验证码生成四位图片验证码生成简单验证码识别等

thinkphp3.2验证码怎么写

(tensorflow CNN)验证码识别--生成验证码

第二百七十节,Tornado框架-生成验证码图片,以及验证码结合Session验证

Javaweb 响应——生成验证码