Servlet工具类生成验证码

前言

导包:hutool-all-5.2.3.jar

一、XXX

二、使用步骤

1.导包

2.编写代码

代码如下(示例):

<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>login</title>
    <script type="text/javascript">

    </script>
</head>
<body>
<form action="login" method="post">
    <table>
        <tr>
            <td>用户名:</td>
            <td><input type="text" name="username"></td>
        </tr>
        <tr>
            <td>密码:</td>
            <td><input type="password" name="password"></td>
        </tr>
        <tr>
            <td>验证码:</td>
            <td><input type="text" name="code"></td>
        </tr>
        <!-- 通过向服务器发送请求,从服务器获取验证码数据 -->
        <tr>
            <td></td>
            <td>
                <img id="img" src="check"/>
                <a href="javascript:check()">换一换</a>
            </td>
            <script>
                function check() {
                    document.getElementById("img").src = "check?i=" + new Date();
                }
            </script>
        </tr>
        <tr>
            <td></td>
            <td><input type="submit" value="登陆"></td>
        </tr>
    </table>
</form>
</body>
</html>
package com.itheima.controller;

import cn.hutool.captcha.CaptchaUtil;
import cn.hutool.captcha.CircleCaptcha;

import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;

@WebServlet("/check")
public class checkServlet extends HttpServlet {
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        CircleCaptcha circleCaptcha = CaptchaUtil.createCircleCaptcha(100, 30, 4, 10);
        System.out.println(circleCaptcha.getImageBytes());
        System.out.println("**************************");
        System.out.println(circleCaptcha.getCode());
        String code = circleCaptcha.getCode();
        System.out.println("**************************");
        System.out.println(circleCaptcha.getImage());
        System.out.println(circleCaptcha.getGenerator());
        System.out.println(circleCaptcha.getImageBase64());
        System.out.println("--------");
        circleCaptcha.write(response.getOutputStream());
    }

    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        doPost(request, response);
    }
}

总结

可以通过.getCode方法获取验证码的值,后期进行判断

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值