IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> Java生产验证码各种工具类 -> 正文阅读

[Java知识库]Java生产验证码各种工具类

作者:token annotation punctuation


提示:以下是本篇文章正文内容,下面案例可供参考

一、生成数字加减验证码

1、工具类:

/**
 * @Author: Mr.ZJW
 * @Date: 2022-04-20 8:59
 * @Description: 验证码工具类
 */
@Data
public class ImageCode {

    //图形内容
    public String code;
    //图片
    public ByteArrayInputStream image;
    //宽
    private int wight = 400;
    //高
    private int height = 100;

    public static ImageCode getInstance() {
        return new ImageCode();
    }

    public ImageCode() {
        //图形缓冲区
        BufferedImage image = new BufferedImage(wight, height, BufferedImage.TYPE_3BYTE_BGR);
        //画笔
        Graphics graphics = image.getGraphics();
        //设置颜色
        graphics.setColor(new Color(46, 173, 144));
        //画矩形
        graphics.fillRect(0, 0, wight, height);
        //设置字体
        graphics.setFont(new Font("宋体", Font.PLAIN, 30));
        //设置随机数
        Random random = new Random();
        //算数验证码
        int num1 = random.nextInt(20);
        int num2 = random.nextInt(20);
        //设置颜色
        graphics.setColor(new Color(2, 0, 0));
        //画图
        int Y = 60;
        graphics.drawString(String.valueOf(num1), wight / 6 * 0 + 50, Y);
        graphics.drawString("+", wight / 6 * 1 + 50, Y);
        graphics.drawString(String.valueOf(num2), wight / 6 * 2 + 50, Y);
        graphics.drawString("=", wight / 6 * 3 + 50, Y);
        graphics.drawString("?", wight / 6 * 4 + 50, Y);
        //计算值
        int result = num1 + num2;
        this.code = result+"";
        //收笔
        graphics.dispose();

        ByteArrayInputStream inputStream = null;
        ByteOutputStream outputStream = new ByteOutputStream();

        //赋值给ByteArrayInputStream
        try {
            ImageOutputStream imageOutputStream = ImageIO.createImageOutputStream(outputStream);
            ImageIO.write(image, "jpg", imageOutputStream);

            inputStream = new ByteArrayInputStream(outputStream.toByteArray());
        } catch (IOException e) {
            e.printStackTrace();
        }
        //生成图片
        this.image = inputStream;
    }


}

2、controller:
这里存放到redis中了,redis配置自行配。
也可以存放到session中,改为session就行。

    @Autowired
    private StringRedisTemplate redisTemplate;

    /**
     * @Author: Mr.ZJW
     * @Description: 生成加减验证码
     * @Date: 2022/4/20 8:53
     * @param response*/
    @GetMapping("/generatorCode")
    public void generatorCode(HttpServletResponse response) {
        ImageCode imageCode = ImageCode.getInstance();
        //获取验证码内容
        String code = imageCode.getCode();
        //存放到Redis
        redisTemplate.opsForValue().set("Code",code);
        //获取图片
        ByteArrayInputStream image = imageCode.getImage();
        //设置内容类型
        response.setContentType("image/jpg");
        byte[] bytes = new byte[1024];
        try (ServletOutputStream outputStream = response.getOutputStream()){
            while (image.read(bytes) != -1){
                outputStream.write(bytes);
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
    
    /**
     * @author: Mr.ZJW
     * @date: 2022/4/21 15:50
     * @description: 校验验证码
     */
    @GetMapping("/verifyCode")
    public String verifyCode(String code){
        //获取验证码结果
        String result = redisTemplate.opsForValue().get("Code");
        if (code.equals(result)) {
            return "success";
        }
        return "error";
    }

3、测试效果:

先请求生产验证码:这里答案是12
在这里插入图片描述
在请求校验接口看是否正确
在这里插入图片描述

二、糊涂工具类生产验证码

1、引入依赖

            <dependency>
                <groupId>cn.hutool</groupId>
                <artifactId>hutool-all</artifactId>
                 <version>5.7.21</version>
            </dependency>

2、生产验证码
这里是生成吧验证码生成一张图片,渲染到页面,前端直接拿就行

    /**
     * @author: Mr.ZJW
     * @date: 2022/4/21 11:51
     * @description: 生成验证码
     */
    @GetMapping("/getCode")
    public void getCode(HttpServletResponse response){
        //定义图形验证码的长和宽
        LineCaptcha lineCaptcha = CaptchaUtil.createLineCaptcha(116, 36,4,5);
        //存放到Redis
        redisTemplate.opsForValue().set("Code",lineCaptcha.getCode());
        try {
            ServletOutputStream outputStream = response.getOutputStream();
            //验证码写到页面上
            lineCaptcha.write(outputStream);
            //关闭
            outputStream.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

3、测试效果
在这里插入图片描述
校验跟同上,自行校验

三、Happy-captcha生产验证码

官网https://gitee.com/ramostear/Happy-Captcha?_from=gitee_search
1、导入依赖:

            <!--验证码工具类-->
            <dependency>
                <groupId>com.ramostear</groupId>
                <artifactId>Happy-Captcha</artifactId>
                <version>1.0.1</version>
            </dependency>

2、生产验证码:

    /**
     * @author: Mr.ZJW
     * @date: 2022/4/21 16:59
     * @description: Happy-Captcha工具类生成验证码
     */
    @GetMapping("/generateCode")
    public void generateCode(HttpServletResponse response, HttpServletRequest request){
        HappyCaptcha.require(request, response)
                .style(CaptchaStyle.ANIM)   //设置样式
                .build()
                .finish();
    }

	/**
     * @author: Mr.ZJW
     * @date: 2022/4/21 15:50
     * @description: 校验Happy-Captcha工具类生成的验证码
     */
    @GetMapping("/verifyHappyCaptcha")
    public String verifyHappyCaptcha(String code,HttpServletRequest request){
        boolean verification = HappyCaptcha.verification(request, code, true);
        if (verification) {
            //如果通过清楚当前验证码验证
            HappyCaptcha.remove(request);
            return "success";
        }
        return "error";
    }

3、测试:

在这里插入图片描述

验证:

四、easy-captcha生成验证码

依赖:

            <dependency>
                <groupId>com.github.whvcse</groupId>
                <artifactId>easy-captcha</artifactId>
                <version>1.6.2</version>
            </dependency>

1、生成验证码:

    /**
     * @author: Mr.ZJW
     * @date: 2022/4/21 15:50
     * @description: easyGenerateCode工具类生成的验证码
     */
    @GetMapping("/easyGenerateCode")
    public void easyGenerateCode(HttpServletResponse response, HttpServletRequest request) {
//        //生成普通验证码
//        SpecCaptcha specCaptcha = new SpecCaptcha();
        //生成算数验证码
        ArithmeticCaptcha arithmeticCaptcha = new ArithmeticCaptcha();
        //设置2为算数
        arithmeticCaptcha.setLen(2);
        //验证码结果
        String content = arithmeticCaptcha.text();
        //存放到Redis中
        redisTemplate.opsForValue().set("code", content);
        try {
            com.wf.captcha.utils.CaptchaUtil.out(arithmeticCaptcha, request, response);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

2、效果:
普通验证码:
**在这里插入图片描述
算数验证码:
在这里插入图片描述

还有很多的样式以及格式自行测试
在这里插入图片描述

  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2022-04-22 18:22:35  更:2022-04-22 18:26:46 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 4:35:41-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码