`
thunder_yan
  • 浏览: 112741 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

kaptcha 简单方便的验证码生成工具

阅读更多

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文件

其实就是配置com.google.code.kaptcha.servlet.KaptchaServlet

 

<?xml version="1.0" encoding="UTF-8"?>  
<web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"  
    version="2.4">  
    <servlet>  
        <servlet-name>Kaptcha</servlet-name>  
        <servlet-class>com.google.code.kaptcha.servlet.KaptchaServlet</servlet-class>  
        <init-param>  
            <description> Border around kaptcha. Legal values are yes or no. </description>  
            <param-name>kaptcha.border</param-name>  
            <param-value>no</param-value>  
        </init-param>  
        <init-param>  
            <description>Color of the border. Legal values are r,g,b (and optional alpha) or white,black,blue. </description>  
            <param-name>kaptcha.border.color</param-name>  
            <param-value>red</param-value>  
        </init-param>  
        <init-param>  
            <description>Thickness of the border around kaptcha. Legal values are > 0. </description>  
            <param-name>kaptcha.border.thickness</param-name>  
            <param-value>5</param-value>  
        </init-param>  
        <init-param>  
            <description>Width in pixels of the kaptcha image. </description>  
            <param-name>kaptcha.image.width</param-name>  
            <param-value>80</param-value>  
        </init-param>  
        <init-param>  
            <description>Height in pixels of the kaptcha image. </description>  
            <param-name>kaptcha.image.height</param-name>  
            <param-value>40</param-value>  
        </init-param>  
        <init-param>  
            <description>The image producer. </description>  
            <param-name>kaptcha.producer.impl</param-name>  
            <param-value>com.google.code.kaptcha.impl.DefaultKaptcha </param-value>  
        </init-param>  
        <init-param>  
            <description>The text producer. </description>  
            <param-name>kaptcha.textproducer.impl</param-name>  
            <param-value>com.google.code.kaptcha.text.impl.DefaultTextCreator</param-value>  
        </init-param>  
        <init-param>  
            <description>The characters that will create the kaptcha. </description>  
            <param-name>kaptcha.textproducer.char.string</param-name>  
            <param-value>abcde2345678gfynmnpwx </param-value>  
        </init-param>  
        <init-param>  
            <description>The number of characters to display. </description>  
            <param-name>kaptcha.textproducer.char.length</param-name>  
            <param-value>5</param-value>  
        </init-param>  
        <init-param>  
            <description>A list of comma separated font names.</description>  
            <param-name>kaptcha.textproducer.font.names</param-name>  
            <param-value>Arial, Courier</param-value>  
        </init-param>  
        <init-param>  
            <description>The size of the font to use. </description>  
            <param-name>kaptcha.textproducer.font.size</param-name>  
            <param-value>23</param-value>  
        </init-param>  
        <init-param>  
            <description>The color to use for the font. Legal values are r,g,b. </description>  
            <param-name>kaptcha.textproducer.font.color</param-name>  
            <param-value>black</param-value>  
        </init-param>  
        <init-param>  
            <description>The noise producer. </description>  
            <param-name>kaptcha.noise.impl</param-name>  
            <param-value>com.google.code.kaptcha.impl.NoNoise </param-value>  
        </init-param>  
        <init-param>  
            <description>The noise color. Legal values are r,g,b. </description>  
            <param-name>kaptcha.noise.color</param-name>  
            <param-value>black</param-value>  
        </init-param>  
        <init-param>  
            <description>The obscurificator implementation. </description>  
            <param-name>kaptcha.obscurificator.impl</param-name>  
            <param-value>com.google.code.kaptcha.impl.ShadowGimpy</param-value>  
        </init-param>  
        <init-param>  
            <description>The background implementation. </description>  
            <param-name>kaptcha.background.impl</param-name>  
            <param-value>com.google.code.kaptcha.impl.DefaultBackground</param-value>  
        </init-param>  
        <init-param>  
            <description>Ending background color. Legal values are r,g,b. </description>  
            <param-name>kaptcha.background.clear.to</param-name>  
            <param-value>white</param-value>  
        </init-param>  
        <init-param>  
            <description>The word renderer implementation. </description>  
            <param-name>kaptcha.word.impl</param-name>  
            <param-value>com.google.code.kaptcha.text.impl.DefaultWordRenderer</param-value>  
        </init-param>  
        <init-param>  
            <description>The value for the kaptcha is generated and is put into the HttpSession. This is the key value for that item in the session. </description>  
            <param-name>kaptcha.session.key</param-name>  
            <param-value>KAPTCHA_SESSION_KEY</param-value>  
        </init-param>  
        <init-param>  
            <description>The date the kaptcha is generated is put into the HttpSession. This is the key value for that item in the session. </description>  
            <param-name>kaptcha.session.date</param-name>  
            <param-value>KAPTCHA_SESSION_DATE</param-value>  
        </init-param>  
    </servlet>  
    <servlet-mapping>  
        <servlet-name>Kaptcha</servlet-name>  
        <url-pattern>/Kaptcha.jpg</url-pattern>  
    </servlet-mapping>  
    <welcome-file-list>  
        <welcome-file>KaptchaExample.jsp</welcome-file>  
    </welcome-file-list>  
</web-app>  
 4.编写KaptchaExample.jsp

这里用到了jQuery,所以添加了jQuery的库

 

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">  
<html>  
    <head>  
        <%@ page language="java" contentType="text/html; charset=UTF-8"%>  
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">  
        <title>Kaptcha Example</title>  
        <mce:script type="text/javascript" src="js/jquery-1.3.2.js" mce_src="js/jquery-1.3.2.js"></mce:script>  
    </head>  
    <body>  
        Enter in the  
        <a href="http://code.google.com/p/kaptcha/" mce_href="http://code.google.com/p/kaptcha/">Kaptcha</a> to see if it  
        matches what is stored in the session attributes.  
        <table>  
            <tr>  
                <td>  
                    <img src="Kaptcha.jpg" mce_src="Kaptcha.jpg" id="kaptchaImage" />  
                    <mce:script type="text/javascript"><!--  
$('#kaptchaImage').click(  
        function() {  
            $(this).hide().attr('src',  
                    'Kaptcha.jpg?' + Math.floor(Math.random() * 100)).fadeIn();  
        })  
// --></mce:script>  
                    <br />  
                    单击换图片  
                </td>  
                <td valign="top">  
                    <form method="POST">  
                        <br>  
                        验证码::  
                        <input type="text" name="kaptchafield">  
                        <br />  
                        <input type="submit" name="submit">  
                    </form>  
                </td>  
            </tr>  
        </table>  
        <br />  
        <br />  
        <br />  
        <br />  
        <%  
            String c = (String) session  
                    .getAttribute(com.google.code.kaptcha.Constants.KAPTCHA_SESSION_KEY);  
            String parm = (String) request.getParameter("kaptchafield");  
              
            System.out.println(c);  
            out.println("Parameter: " + parm + " ? Session Key: " + c + " : ");  
            if (c != null && parm != null)  
            {  
                if (c.equals(parm))  
                {  
                    out.println("<b>true</b>");  
                } else  
                {  
                    out.println("<b>false</b>");  
                }  
            }  
        %>  
    </body>  
</html>  
 5.运行测试
分享到:
评论

相关推荐

    kaptcha快速生成验证码

    kaptcha-2.3.2.jar kaptcha-2.3.2-javadoc.jar ...1.Kaptcha是谷歌开源的可高度配置的实用验证码生成工具。 2.通过Kaptcha可阻拦大多数机器人脚本操作。 3.kaptcha典型殷勇于注册、登录、重要信息提交等用户交互

    谷歌验证码使用工具——kaptcha-2.3.2

    【谷歌验证码使用工具——kaptcha-2.3.2】是一款基于Java的开源验证码生成库,主要用于网站的身份验证,防止自动化的机器人或者恶意攻击者进行非法操作。kaptcha这个名字是"CAPTCHA"(Completely Automated Public ...

    kaptcha demo 简单的验证码工具

    Kaptcha 是一个开源的 Java 实现的验证码生成器,它提供了简单而有效的验证码解决方案。 Kaptcha 的核心思想是生成一种难以被机器识别但对人类来说容易辨认的图像,通常包含随机的字母或数字。这个工具包提供了多种...

    kaptcha验证码生成工具

    Kaptcha是一个用Java编写的开源验证码生成器,适用于各种Web应用,旨在提供简单而强大的解决方案来创建难以识别但又不会困扰用户的验证码。 Kaptcha-2.3.2.jar是该工具包的核心库文件,包含了生成验证码所需的所有...

    kaptcha验证码生成jar包后台配置源代码

    kaptcha验证码生成jar包后台配置源代码 kaptcha生成验证码的作用:进行人机校验--防止机器脚本自动大量注册用户。 1、Kaptcha是谷歌开源的可高度配置的实用验证码生成工具。 2、过Kaptcha可阻拦大多数机器人脚本...

    kaptcha-2.3.2 验证码 全套demo及资料

    总的来说,kaptcha-2.3.2是一个强大且灵活的验证码生成工具,通过深入研究和实践,开发者可以轻松地集成到自己的Web应用中,提高系统的安全性。无论是简单的Web项目还是大型的企业级应用,kaptcha都能提供可靠的支持...

    kaptcha-2.3.2 生成验证码

    总的来说,`kaptcha-2.3.2` 是一个强大且易用的验证码生成工具,能够帮助开发者轻松实现安全的用户验证机制。通过阅读提供的示例和教程,开发者可以快速地将`kaptcha`整合进自己的Java Web项目中,提升网站的安全性...

    kaptcha验证码小程序

    这个"kaptcha验证码小程序"是基于kaptcha开发的一个简单的示例项目,旨在帮助初学者了解和学习如何使用kaptcha来创建验证码。 kaptcha的核心特性包括: 1. **可定制性**:kaptcha提供了一系列参数供开发者调整...

    kaptcha-2.3.2.jar工具类

    《kaptcha-2.3.2.jar:验证码生成工具详解》 在网络安全领域,验证码(CAPTCHA)是一种广泛使用的安全机制,它能有效防止自动化的机器人程序进行恶意操作,如批量注册、垃圾评论等。kaptcha是Java开发中常用的一个...

    kaptcha验证码

    《kaptcha验证码:Java平台上的高效解决方案》 验证码(CAPTCHA)作为一种防止自动化程序自动提交表单的安全机制,被广泛应用于网站登录、注册、评论等场景。在Java开发环境中,kaptcha是一个备受青睐的第三方插件...

    kaptcha是google开源的一个非常实用的验证码生成工具类,里面包含kaptcha jar包和打包命令

    kaptcha是一个Java实现的验证码生成工具,它的主要功能是生成随机且具有可读性的图像验证码。kaptcha-2.3.2是这个项目的特定版本,包含了该版本的jar包,这使得开发者可以直接引入项目中使用,无需从源码编译。 在...

    kaptcha-2.3.2.rar

    《Kaptcha:Java验证码生成工具详解》 在网络安全领域,验证码是一种常见的反自动化技术,用于防止恶意机器人或脚本自动提交表单。在Java开发中,Kaptcha是一个强大的验证码生成库,它允许开发者轻松地在应用程序中...

    Kaptcha验证码类库及配置

    通过以上介绍,我们可以看到Kaptcha验证码类库是一个实用且灵活的工具,它简化了验证码功能的实现,帮助开发者构建更安全的Web应用。无论你是新手还是经验丰富的开发者,Kaptcha都是一个值得信赖的选择。

    谷歌kaptcha验证码jar包

    谷歌Kaptcha验证码jar包是Google提供的一种用于网页安全验证的工具。Kaptcha,源自马来语“cap”,意为“图片”,是一种开源项目,主要用于生成难以被机器识别的图像验证码,以此来防止自动化程序(如机器人)对网站...

    kaptcha-2.3.jar 验证码生成

    第三方,验证码生成的工具类 可以在这里直接下载

    kaptcha 图片验证码

    总结,Kaptcha作为一款强大的图片验证码生成工具,不仅能够有效防止自动化攻击,而且具有高度的可定制性和易用性,使得在SpringMVC项目中集成和使用变得十分便捷。通过深入理解和实践,我们可以构建出既安全又符合...

    com.google.code.kaptcha:2.3.2 谷歌验证码依赖下载

    总的来说,`com.google.code.kaptcha:2.3.2`是一个强大且易于使用的验证码生成库,对于Java开发者来说,它提供了一个可靠的工具来增强网站或应用的安全性,防止自动化的恶意攻击。通过理解并熟练运用这个库,开发者...

    spring整合kaptcha验证码的实现

    首先,kaptcha是一个很有用的验证码生成工具,由于它有许多可配置项,所以用它可以简单快捷的生成各式各样的验证码。kaptcha的主要特点是可以生成图片验证码、音频验证码、数学验证码等多种类型的验证码,同时也支持...

    Kaptcha开发简单实例

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

    谷歌验证码工具包kaptcha-2.3.2.jar

    谷歌的验证码生成工具包,下载解压,使用命令mvn install:install-file -Dfile=(你的路径)/kaptcha-2.3.2.jar -DgroupId=com.google.code.kaptcha -DartifactId=kaptcha -Dversion=2.3.2 -Dpackaging=jar安装到...

Global site tag (gtag.js) - Google Analytics