使用开源工具制作网页验证码的方法

网友投稿 260 2023-07-03


使用开源工具制作网页验证码的方法

开发工具:eclipse、kaptcha-2.3.jar包。

一、创建Web项目;

二、新建一个jsp页面(内GBaliFNacr容有,一个文本框,一个图片容器,一个提交按钮)

random

三、可以看出图片验证码来源(src=“randomcode.jpg”)需配置Web.xml文件。(交给Servlet(该servlet在kaptcha-2.3.jar)处理)

Kaptcha

com.google.code.kaptcha.servlet.KaptchaServlet

Kaptcha

/randomcode.jpg

四、由于需要kaptcha-2.3.jar包,所以将下载好的jar包导入在lib中。(复制黏贴即可)

其他:

一、网页验证码的属性

(一)添加边框

图片边框,合法值:yes , no

kaptcha.border

yes

(二)边框颜色

边框颜色,合法值: r,g,b (and optional alpha) 或者white,black,blue.

kaptcha.border.color

black

(三)边框厚度

边框厚度,合法值:>大于0

kaptcha.border.thickness

1

(四)图片宽度

图片宽 200

kaptcha.image.width

200

(五)图片高度

图片高 50

kaptcha.image.height

50

(六)验证码集合

文本集合,验证码值从此集合中获取

kaptcha.textproducer.char.string

1234567890

//abcde2345678gfynmnpwx

(七)验证码长度

验证码长度 默认是5

kaptcha.textproducer.char.length

2

(八)字体

字体 Arial, Courier

kaptcha.textproducer.font.names

Arial, Courier

(九)字体大小

字体大小 40px.

kaptcha.textproducer.font.size

40

(十)字体颜色

字体颜色,合法值: r,g,b 或者 white,black,blue.

kaptcha.textproducer.font.color

black

(十一)每个验证码之间的间隔

文字间隔 2

kaptcha.textproducer.char.space

2

(十二)干扰实现

干扰实现类

kaptcha.noise.impl

com.google.code.kaptcha.impl.DefaultNoise

(十三)干扰颜色

干扰颜色,合法值: r,g,b 或者 white,black,blue.

kaptcha.noise.color

black

(十四)背景样式

图片样式: 水纹com.google.code.kaptcha.impl.WaterRipple

鱼眼com.google.code.kaptcha.impl.FishEyeGimpy

阴影com.google.code.kaptcha.impl.ShadowGimpy

kaptcha.obscurificator.impl

com.google.code.kaptcha.impl.WaterRipple

(十五)背景实现类

背景实现类

kaptcha.background.impl

com.google.code.kaptcha.impl.DefaultBackground

(十六)背景渐变颜色

背景颜色渐变,开始颜色

kaptcha.background.clear.from

green

背景颜色渐变,结束颜色

kaptcha.background.clear.to

white

(十七)文字渲染器

文字渲染器

kaptcha.word.impl

com.google.code.kaptcha.text.impl.DefaultWordRenderer

(十八)图片的验证码会保存在Session中,其中的值为

session中存放验证码的key键

kaptcha.session.key

KAPTCHA_SESSION_KEY

(十九)图片实现类别

<init-param>

图片实现类

kaptcha.producer.impl

com.google.code.kaptcha.impl.DefaultKaptcha

(二十)文本实现类(可通过重写该类来实现验证码为中文)

文本实现类

kaptcha.textproducer.impl

com.google.code.kaptcha.text.impl.DefaultTextCreator

重写文本实现类,实现验证码为中文:

1.创建一个类别,继承Configurable 实现TextProducer(在jar包中)

import com.google.code.kaptcha.text.TextProducer;

import com.google.code.kaptcha.util.Configurable;

import java.util.Random;

public class ChineseText extends Configurable implements TextProducer {

public String getText() {

int length = getConfig().getTextProducerCharLength();

String finalWord = "", firstWord = "";

int tempInt = 0;

String[] array = { "0", "1", "2", "3", "4", "5", "6", "7", "8", "9",

"a", "b", "c", "d", "e", "f" };

Random rand = new Random();

for (int i = 0; i < length; i++) {

switch (rand.nextInt(array.length)) {

case 1:

tempInt = rand.nextInt(26) + 65;

firstWord = String.valueOf((char) tempInt);

break;

case 2:

int r1,

r2,

r3,

r4;

String strH,

strL;// high&low

r1 = rand.nextInt(3) + 11; // 前闭后开[11,14)

if (r1 == 13) {

r2 = rand.nextInt(7);

} else {

r2 = rand.nextInt(16);

}

r3 = rand.nextInt(6) + 10;

if (r3 == 10) {

r4 = rand.nextInt(15) + 1;

} else if (r3 == 15) {

r4 = rand.nextInt(15);

} else {

r4 = rand.nextInt(16);

}

strH = array[r1] + array[r2];

strL = array[r3] + array[r4];

byte[] bytes = new byte[2];

bytes[0] = (byte) (Integer.parseInt(strH, 16));

bytes[1] = (byte) (Integer.parseInt(strL, 16));

firstWord = new String(bytes);

break;

default:

tempInt = rand.nextInt(10) + 48;

firstWord = String.valueOf((char) tempInt);

break;

}

finalWord += firstWord;

}

return finalWord;

}

}

2.修改Web.xml配置

文本实现类

kaptcha.textproducer.impl

ChineseText

五、验证码的校验(本文是利用check.jsp来校验的)保存在Session中,其中的键值为(第十八个属性)

[html] view plain copy

<%

// 检查是否是正确的验证码

String k = (String) session.getAttribute(com.google.code.kaptcha.Constants.KAPTCHA_SESSION_KEY);

String str = request.getParameter("r");

if (k.equals(str))

out.print("true");

out.print(k + "---" + str);

%>

六、扩展(加法验证码的实现)

1.重写KaptchaServlet类

import com.google.code.kaptcha.Producer;

import com.google.code.kaptcha.util.Config;

import java.awt.image.BufferedImage;

import java.io.IOException;

import java.util.Enumeration;

import java.util.Properties;

import javax.imageio.ImageIO;

import javax.servlet.Servlet;

import javax.servlet.ServletConfig;

import javax.servlet.ServletException;

import javax.servlet.ServletOutputStream;

import javax.servlet.http.HttpServlet;

import javax.servlet.http.HttpServletRequest;

import javax.servlet.http.HttpServletResponse;

import javax.servlet.http.HttpSession;

public class KaptchaServlet extends HttpServlet implements Servlet {

private Properties props;

private Producer kaptchaProducer;

private String sessionKeyValue;

public KaptchaServlet() {

this.props = new Properties();

this.kaptchaProducer = null;

this.sessionKeyValue = null;

}

public void init(ServletConfig conf) throws ServletException {

super.init(conf);

ImageIO.setUseCache(false);

Enumeration initParams = conf.getInitParameterNames();

while (initParams.hasMoreElements()) {

String key = (String) initParams.nextElement();

String value = conf.getInitParameter(key);

this.props.put(key, value);

}

Config config = new Config(this.props);

this.kaptchaProducer = config.getProducerImpl();

this.sessionKeyValue = config.getSessionKey();

}

public void doGet(HttpServletRequest req, HttpServletResponse resp)

throws ServletException, IOException {

resp.setDateHeader("Expires", 0L);

resp.setHeader("Cache-Control", "no-store, no-cache, must-revalidate");

resp.addHeader("Cache-Control", "post-check=0, pre-check=0");

resp.setHeader("Pragma", "no-cache");

resp.setContentType("image/jpeg");

String capText = this.kaptchaProducer.createText();

String s1 = capText.substring(0, 1);

String s2 = capText.substring(1, 2);

int r = Integer.valueOf(s1).intValue() + Integer.valueOf(s2).intValue();

req.getSession().setAttribute(this.sessionKeyValue, String.valueOf(r));

BufferedImage bi = this.kaptchaProducer.createImage(s1+"+"+s2+"=?");

ServletOutputStream out = resp.getOutputStream();

ImageIO.write(bi, "jpg", out);

try {

out.flush();

} finally {

out.close();

}

}

}

2.修改配置文件

Kaptcha

KaptchaServlet

以上所述是给大家介绍的使用开源工具制作网页验证码的方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,会及时回复大家的。在此也非常感谢大家对我们网站的支持!


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Java Spring 事务回滚详解
下一篇:类似于QQ的右滑删除效果的实现方法
相关文章

 发表评论

暂时没有评论,来抢沙发吧~