kaptcha 是一个非常实用的验证码生成工具。有了它,你可以生成各种样式的验证码,因为它是可配置的。kaptcha工作的原理是调用 com.google.code.kaptcha.servlet.KaptchaServlet,生成一个图片。同时将生成的验证码字符串放到 HttpSession中。

使用kaptcha可以方便的配置:

  • 验证码的字体
  • 验证码字体的大小
  • 验证码字体的字体颜色
  • 验证码内容的范围(数字,字母,中文汉字!)
  • 验证码图片的大小,边框,边框粗细,边框颜色
  • 验证码的干扰线(可以自己继承com.google.code.kaptcha.NoiseProducer写一个自定义的干扰线)
  • 验证码的样式(鱼眼样式、3D、普通模糊……当然也可以继承com.google.code.kaptcha.GimpyEngine自定义样式)

……

详细信息请看下面的web.xml文件

下面介绍一下用法:

1.首先去官网下载jar:http://code.google.com/p/kaptcha/

2.建立一个web项目,导入kaptcha-2.3.jar到环境变量中。

3.配置web.xml文件

Java代码  
  1. <!--Kaptcha 验证码  --><!--
  2. <servlet>
  3. <servlet-name>kaptcha</servlet-name>
  4. <servlet-class>com.google.code.kaptcha.servlet.KaptchaServlet</servlet-class>
  5. <init-param>
  6. <param-name>kaptcha.border</param-name>
  7. <param-value>no</param-value>
  8. </init-param>
  9. <init-param>
  10. <param-name>kaptcha.border.color</param-name>
  11. <param-value>105,179,90</param-value>
  12. </init-param>
  13. <init-param>
  14. <param-name>kaptcha.textproducer.font.color</param-name>
  15. <param-value>red</param-value>
  16. </init-param>
  17. <init-param>
  18. <param-name>kaptcha.image.width</param-name>
  19. <param-value>250</param-value>
  20. </init-param>
  21. <init-param>
  22. <param-name>kaptcha.image.height</param-name>
  23. <param-value>90</param-value>
  24. </init-param>
  25. <init-param>
  26. <param-name>kaptcha.textproducer.font.size</param-name>
  27. <param-value>70</param-value>
  28. </init-param>
  29. <init-param>
  30. <param-name>kaptcha.session.key</param-name>
  31. <param-value>code</param-value>
  32. </init-param>
  33. <init-param>
  34. <param-name>kaptcha.textproducer.char.length</param-name>
  35. <param-value>4</param-value>
  36. </init-param>
  37. <init-param>
  38. <param-name>kaptcha.textproducer.font.names</param-name>
  39. <param-value>宋体,楷体,微软雅黑</param-value>
  40. </init-param>
  41. </servlet>
Java代码  
  1. <servlet-mapping>
  2. <servlet-name>kaptcha</servlet-name>
  3. <url-pattern>/ClinicCountManager/kaptcha.jpg</url-pattern>
  4. lt;/servlet-mapping>

jsp 页面使用

Java代码  
  1. <table>
  2. <tr>
  3. <td><img src="/ClinicCountManager/kaptcha.jpg"></td>
  4. <td valign="top">
  5. <form method="POST">
  6. <br>sec code:<input type="text" name="kaptchafield"><br />
  7. <input type="submit" name="submit">
  8. </form>
  9. </td>
  10. </tr>
  11. </table>
  12. <br /><br /><br /><br />
  13. <%
  14. String c = (String)session.getAttribute(com.google.code.kaptcha.Constants.KAPTCHA_SESSION_KEY);
  15. String parm = (String) request.getParameter("kaptchafield");
  16. out.println("Parameter: " + parm + " ? Session Key: " + c + " : ");
  17. if (c != null && parm != null) {
  18. if (c.equals(parm)) {
  19. out.println("<b>true</b>");
  20. } else {
  21. out.println("<b>false</b>");
  22. }
  23. %>

上面的配置在普通jsp环境下面是有效的,如果在spring mvc环境下,则取不到session值,对于sping mvc环境验证码配置如下:

1.不用在web.xml进行相关配置,在applicationContext.xml中配置

Java代码  
  1. <bean id="captchaProducer" class="com.google.code.kaptcha.impl.DefaultKaptcha">
  2. <property name="config">
  3. <bean class="com.google.code.kaptcha.util.Config">
  4. <constructor-arg>
  5. <props>
  6. <prop key="kaptcha.border">no</prop>
  7. <prop key="kaptcha.border.color">105,179,90</prop>
  8. <prop key="kaptcha.textproducer.font.color">red</prop>
  9. <prop key="kaptcha.image.width">250</prop>
  10. <prop key="kaptcha.textproducer.font.size">90</prop>
  11. <prop key="kaptcha.image.height">90</prop>
  12. <prop key="kaptcha.session.key">code</prop>
  13. <prop key="kaptcha.textproducer.char.length">4</prop>
  14. <prop key="kaptcha.textproducer.font.names">宋体,楷体,微软雅黑</prop>
  15. </props>
  16. </constructor-arg>
  17. </bean>
  18. </property>
  19. </bean>

新建生成图片控制类

Java代码  
  1. import java.awt.image.BufferedImage;
  2. import javax.imageio.ImageIO;
  3. import javax.servlet.ServletOutputStream;
  4. import javax.servlet.http.HttpServletRequest;
  5. import javax.servlet.http.HttpServletResponse;
  6. import org.springframework.beans.factory.annotation.Autowired;
  7. import org.springframework.stereotype.Controller;
  8. import org.springframework.web.bind.annotation.RequestMapping;
  9. import org.springframework.web.servlet.ModelAndView;
  10. import com.google.code.kaptcha.Constants;
  11. import com.google.code.kaptcha.Producer;
  12. @Controller
  13. @RequestMapping("/")
  14. public class CaptchaImageCreateController {
  15. private Producer captchaProducer = null;
  16. @Autowired
  17. public void setCaptchaProducer(Producer captchaProducer) {
  18. this.captchaProducer = captchaProducer;
  19. }
  20. @RequestMapping("/captcha-image")
  21. public ModelAndView handleRequest(HttpServletRequest request, HttpServletResponse response) throws Exception {
  22. response.setDateHeader("Expires", 0);
  23. // Set standard HTTP/1.1 no-cache headers.
  24. response.setHeader("Cache-Control", "no-store, no-cache, must-revalidate");
  25. // Set IE extended HTTP/1.1 no-cache headers (use addHeader).
  26. response.addHeader("Cache-Control", "post-check=0, pre-check=0");
  27. // Set standard HTTP/1.0 no-cache header.
  28. response.setHeader("Pragma", "no-cache");
  29. // return a jpeg
  30. response.setContentType("image/jpeg");
  31. // create the text for the image
  32. String capText = captchaProducer.createText();
  33. // store the text in the session
  34. request.getSession().setAttribute(Constants.KAPTCHA_SESSION_KEY, capText);
  35. // create the image with the text
  36. BufferedImage bi = captchaProducer.createImage(capText);
  37. ServletOutputStream out = response.getOutputStream();
  38. // write the data out
  39. ImageIO.write(bi, "jpg", out);
  40. try {
  41. out.flush();
  42. } finally {
  43. out.close();
  44. }
  45. return null;
  46. }
  47. }

前台调用方式

Java代码  
  1. <div class="chknumber">
  2. <label>验证码:
  3. <input name="kaptcha" type="text" id="kaptcha" maxlength="4" class="chknumber_input" />
  4. </label>
  5. <img src="/ClinicCountManager/captcha-image.do" width="55" height="20" id="kaptchaImage"  style="margin-bottom: -3px"/>
  6. <script type="text/javascript">
  7. $(function(){
  8. $('#kaptchaImage').click(function () {//生成验证码
  9. $(this).hide().attr('src', '/ClinicCountManager/captcha-image.do?' + Math.floor(Math.random()*100) ).fadeIn(); })
  10. });
  11. </script>
  12. </div>

取验证码的方式

Java代码  
  1. String code = (String)session.getAttribute(com.google.code.kaptcha.Constants.KAPTCHA_SESSION_KEY);

如果需要全部数字

Java代码  
  1. <init-param>
  2. <param-name>kaptcha.textproducer.char.string</param-name>
  3. <param-value>0123456789</param-value>
  4. </init-param>

去掉干扰线

Java代码  
  1. <init-param>
  2. <param-name>kaptcha.noise.impl</param-name>
  3. <param-value>com.google.code.kaptcha.impl.NoNoise </param-value>
  4. </init-param>

kaptcha 验证码组件使用的更多相关文章

  1. google kaptcha 验证码组件使用简介

    kaptcha 是一个非常实用的验证码生成工具.有了它,你可以生成各种样式的验证码,因为它是可配置的.kaptcha工作的原理是调用 com.google.code.kaptcha.servlet.K ...

  2. kaptcha验证码组件使用简介

    Kaptcha是一个基于SimpleCaptcha的验证码开源项目. 官网地址:http://code.google.com/p/kaptcha/ kaptcha的使用比较方便,只需添加jar包依赖之 ...

  3. 如何使用kaptcha验证码组件

    kaptcha是基于SimpleCaptcha的验证码开源项目. kaptcha是纯配置的,使用起来比较友好.如使用了Servlet,所有配置都在web.xml中.如果你在项目中使用了开源框架(比如S ...

  4. java 实现登录验证码 (kaptcha 验证码组件)

    验证码的作用: 1.防止广告机注册和发帖.评论.2.防止暴力破解密码,特别是有管理员权限的密码. 在这里介绍一种非常实用的验证码生成工具:kaptcha 这个工具,可以生成各种样式的验证码,因为它是可 ...

  5. 使用kaptcha验证码组件操作演示

    1.创建一个Maven项目 2.在pom.xml中引入相关依赖 <project xmlns="http://maven.apache.org/POM/4.0.0" xmln ...

  6. jcaptcha和kaptcha验证码使用入门【转】

    jcaptcha和kaptcha验证码使用入门 一.jcaptcha验证码使用 jcaptcha使用默认样式生成的验证码比较难以识别,所以需要自定义验证码的样式,包括,背景色.背景大小.字体.字体大小 ...

  7. 【干货】”首个“ .NET Core 验证码组件

    前言 众所周知,Dotnet Core目前没有图形API,以前的System.Drawing程序集并没有包含在Dotnet Core 1.0环境中.不过在dotnet core labs项目里可以见到 ...

  8. Java实现验证码制作之一Kaptcha验证码

    Kaptcha验证码 是google提供的验证码插件,使用起来相对简单,设置的干扰线以及字体扭曲不易让其他人读取破解. 这里我们需要 导入一个 kaptcha-2.3.jar  下载地址:http:/ ...

  9. kaptcha验证码插件的使用

    kaptcha 是一个非常实用的验证码生成工具.有了它,你可以生成各种样式的验证码,因为它是可配置的.kaptcha工作的原理是调用 com.google.code.kaptcha.servlet.K ...

随机推荐

  1. Centos7.0下将Python更新到Python2.7.13

    在云服务器下默认安装的python版本过低,所有我们要手动进行更新(不建议卸载老的版本,然后安装新的,这样会导致大量的异常错误)   为了防止在安装编译python时出错,需先更新gcc :yum - ...

  2. 树莓派安装FLASK服务;并在端网页读取 GPIO状态和系统时间

    做过一些物联网的作品:因为不想一直做APP来控制,因为不能每个人都去下载你自己做的APP,浏览器大家都是有的:那么每个人通过浏览器WEB来访问我们服务器,岂不是很简单和方便,采用flask+pytho ...

  3. JBoss快速入门知识

    1.下载地址: http://www.jboss.org/jbossas/downloads

  4. (HTTPS)-强制 SSL (HTTPS)Filter

    汗,无知真可怕,Servlert规范中已经有自动跳转到保护页面(Http - Https)的方法了: web.xml       <security-constraint>         ...

  5. [原创]安全系列之端口敲门服务(Port Knocking for Ubuntu 14.04 Server)

    Port Knocking for Ubuntu 14.04 Server OS:ubuntu 14.04 server 原理简单分析: 端口敲门服务,即:knockd服务.该服务通过动态的添加ipt ...

  6. Android 图片加载框架Picasso基本使用和源码完全解析(巨细无比)

    写在之前 原本打算是每周更新一篇博文,同时记录一周的生活状态,但是稍微工作忙一点就顾不上写博客了.悲催 还是说下最近的状况,最近两周一直在接公司申请的计费点, 沃商店,银贝壳,微信等等,然后就是不停的 ...

  7. Navicat for mysql 11.1.20激活

    由于最近工作太忙,一直没有机会分享自己在工作中遇到的困难,今天周日,在出去之前先分享下navicat(版本很重要navicat_trial_11.1.20.0.1449226634)激活. 刚开始我是 ...

  8. OVS + dpdk 安装与实验环境配置

    ***DPDK datapath的OVS的安装与实验环境配置 首先肯定是DPDK的安装       0:安装必要的工具            make            gcc           ...

  9. 隐马尔科夫模型HMM(二)前向后向算法评估观察序列概率

    隐马尔科夫模型HMM(一)HMM模型 隐马尔科夫模型HMM(二)前向后向算法评估观察序列概率 隐马尔科夫模型HMM(三)鲍姆-韦尔奇算法求解HMM参数(TODO) 隐马尔科夫模型HMM(四)维特比算法 ...

  10. Quartz源码分析

    先简单介绍一下quartz,Quartz是一个功能丰富的开源作业调度库,可以集成到几乎任何Java应用程序中 - 从最小的独立应用程序到最大的电子商务系统.quartz可用于创建执行数十,数百甚至数十 ...