龙空技术网

利用Hutool-(Java工具类)实现验证码校验

愷龍 2472

前言:

当前姐妹们对“java验证码验证”大致比较看重,小伙伴们都想要学习一些“java验证码验证”的相关知识。那么小编也在网摘上收集了一些有关“java验证码验证””的相关资讯,希望兄弟们能喜欢,我们一起来学习一下吧!

第一篇是纯利用现有JDK提供的绘图类(ImageIO)类制作,这个过程比较复杂且需要了解ImageIO类。

这一篇文章是利用Hutool工具类来实现的,该工具类已经封装验证码所需的相关类等,使用起来较为简单和方便。

Hutool工具类介绍

Hutool是一个小而全的Java工具类库,通过静态方法封装,降低相关API的学习成本,提高工作效率,使Java拥有函数式语言般的优雅,让Java语言也可以“甜甜的”。

Hutool中的工具方法来自每个用户的精雕细琢,它涵盖了Java开发底层代码中的方方面面,它既是大型项目开发中解决小问题的利器,也是小型项目中的效率担当;

Web开发与其它框架无耦合高度可替换

Hutool官方网站:

Hutool实现验证码生成

利用Hutool实现验证码校验,校验的Servlet与今天的第一篇是一样的,唯一就是验证码的生成是不一样的。利用Hutool生成验证码更快捷。

获取Hutool:

jar包下载:Maven:在项目的pom.xml的dependencies中加入以下内容:

<dependency>

<groupId>cn.hutool</groupId>

<artifactId>hutool-all</artifactId>

<version>5.8.8</version>

</dependency>

Maven相关可参阅:

生成验证码:

设置验证码长、宽、验证码字符数、干扰元素个数:

LineCaptcha lineCaptcha = CaptchaUtil.createLineCaptcha(100,30,4,25);

在页面显示验证码及保存验证码内容到Session:

 try{        lineCaptcha.write(response.getOutputStream());        String code = lineCaptcha.getCode();//获取验证码内容        request.getSession().setAttribute("piccode",code);        response.getOutputStream().close();        }catch (IOException e){            e.printStackTrace();        }

这个就实现了验证码的生成,相比于第一篇自己制作简洁了许多。

完整代码:

ImageGenerate.java

public class ImageGenerate extends HttpServlet {    public void doGet (HttpServletRequest request,HttpServletResponse response) {        LineCaptcha lineCaptcha = CaptchaUtil.createLineCaptcha(100,30,4,25);        response.setContentType("image/jpeg");        response.setHeader("Pragma", "No-cache");        try{        lineCaptcha.write(response.getOutputStream());        String code = lineCaptcha.getCode();        request.getSession().setAttribute("piccode",code);        response.getOutputStream().close();        }catch (IOException e){            e.printStackTrace();        }    }}
测试验证码生成

还是需要先配置web.xml文件:

  <servlet>        <servlet-name>ImageGenerate</servlet-name>        <servlet-class>com.kailong.servlet.ImageGenerate</servlet-class>    </servlet>    <servlet-mapping>        <servlet-name>ImageGenerate</servlet-name>        <url-pattern>/imageGenerate</url-pattern>    </servlet-mapping>
其他样式的验证码

上面展示的验证码是线段干扰样式的验证码,Hutool工具类还提供了其他样式的验证码:

CircleCaptcha -圆圈干扰验证码

例:

//定义图形验证码的长、宽、验证码字符数、干扰元素个数CircleCaptcha captcha = CaptchaUtil.createCircleCaptcha(200, 100, 4, 20);try{    lineCaptcha.write(response.getOutputStream());    String code = lineCaptcha.getCode();//获取验证码内容    request.getSession().setAttribute("piccode",code);    response.getOutputStream().close();}catch (IOException e){    e.printStackTrace();}

2.ShearCaptcha 扭曲干扰验证码

例:

//定义图形验证码的长、宽、验证码字符数、干扰线宽度ShearCaptcha captcha = CaptchaUtil.createShearCaptcha(200, 100, 4, 4);try{    lineCaptcha.write(response.getOutputStream());    String code = lineCaptcha.getCode();//获取验证码内容    request.getSession().setAttribute("piccode",code);    response.getOutputStream().close();}catch (IOException e){    e.printStackTrace();}

3.Hutool还提供了自定义验证码

有时候标准的验证码不满足要求,比如我们希望使用纯字母的验证码、纯数字的验证码、加减乘除的验证码,此时我们就要自定义CodeGenerator

例:

// 自定义纯数字的验证码(随机4位数字,可重复)RandomGenerator randomGenerator = new RandomGenerator("0123456789", 4);LineCaptcha lineCaptcha = CaptchaUtil.createLineCaptcha(200, 100);lineCaptcha.setGenerator(randomGenerator);// 重新生成codelineCaptcha.createCode();
ShearCaptcha captcha = CaptchaUtil.createShearCaptcha(200, 45, 4, 4);// 自定义验证码内容为四则运算方式captcha.setGenerator(new MathGenerator());// 重新生成codecaptcha.createCode();

公众号本文地址:

欢迎关注公众号:愚生浅末。

标签: #java验证码验证 #java破解验证码 #生成随机验证码java #java验证手机号码 #javaweb验证码