首頁 > 後端開發 > php教程 > 使用開源工具製作網頁驗證碼的方法

使用開源工具製作網頁驗證碼的方法

高洛峰
發布: 2023-03-04 19:04:01
原創
1659 人瀏覽過

開發工具:eclipse、kaptcha-2.3.jar套件。

一、建立Web專案;

二、新建一個Jsp頁面(內容有,一個文字框,一個圖片容器,一個提交按鈕)

1

2

3

4

5

6

7

<body>

<img alt="random" src="randomcode.jpg" onclick="changeR(this)" style="cursor: pointer;">

<form action="check.jsp">

<input type="text" name="r">

<input type="submit" value="s">

</form>

</body>

登入後複製

三、可以看出圖片驗證碼來源(src=“randomcode. jpg”)需設定Web.xml檔。 (交給Servlet(此servlet在kaptcha-2.3.jar)處理)

1

2

3

4

5

6

7

8

<servlet>

<servlet-name>Kaptcha</servlet-name>

<servlet-class>com.google.code.kaptcha.servlet.KaptchaServlet</servlet-class>

</servlet>

<servlet-mapping>

<servlet-name>Kaptcha</servlet-name>

<url-pattern>/randomcode.jpg</url-pattern>

</servlet-mapping>

登入後複製

四、由於需要kaptcha-2.3.jar包,所以將下載好的jar包導入在lib中。 (複製貼上即可)

其他:

一、網頁驗證碼的屬性

(一)添加邊框

1

2

3

4

5

6

7

<servlet>

<init-param>

<description>图片边框,合法值:yes , no</description>

<param-name>kaptcha.border</param-name>

<param-value>yes</param-value> <!-- yes 或者 no-->

</init-param>

</servlet>

登入後複製

(二)邊框顏色

1

2

3

4

5

6

7

<init-param>

<description>

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

</description>

<param-name>kaptcha.border.color</param-name>

<param-value>black</param-value>

</init-param>

登入後複製

(三)邊框厚度

(二)邊框顏色

1

2

3

4

5

<init-param>

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

<param-name>kaptcha.border.thickness</param-name>

<param-value>1</param-value>

</init-param>

登入後複製

(三)邊框厚度

rere)圖片

re寬度

1

2

3

4

5

<init-param>

<description>图片宽 200</description>

<param-name>kaptcha.image.width</param-name>

<param-value>200</param-value>

</init-param>

登入後複製

(五)圖片高度

1

2

3

4

5

<init-param>

<description>图片高 50</description>

<param-name>kaptcha.image.height</param-name>

<param-value>50</param-value>

</init-param>

登入後複製

(六)驗證碼集合

1

2

3

4

5

6

<init-param>

<description>文本集合,验证码值从此集合中获取</description>

<param-name>kaptcha.textproducer.char.string</param-name>

<param-value>1234567890</param-value> <!--纯数字 -->

//<param-value>abcde2345678gfynmnpwx</param-value> <!-- 文字加英文-->

</init-param>

登入後複製

(七)驗證碼長度

1

2

3

4

5

<init-param>

<description>验证码长度 默认是5 </description>

<param-name>kaptcha.textproducer.char.length</param-name>

<param-value>2</param-value>

</init-param>

登入後複製

(八)字體

1

2

3

4

5

<init-param>

<description>字体 Arial, Courier</description>

<param-name>kaptcha.textproducer.font.names</param-name>

<param-value>Arial, Courier</param-value>

</init-param>

登入後複製

(十)字體顏色

1

2

3

4

5

<init-param>

<description>字体大小 40px.</description>

<param-name>kaptcha.textproducer.font.size</param-name>

<param-value>40</param-value>

</init-param>

登入後複製

(十一)每個驗證碼之間的間隔

1

2

3

4

5

6

7

<init-param>

<description>

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

</description>

<param-name>kaptcha.textproducer.font.color</param-name>

<param-value>black</param-value>

</init-param>

登入後複製

(十二)幹擾實現

1

2

3

4

5

<init-param>

<description>文字间隔 2</description>

<param-name>kaptcha.textproducer.char.space</param-name>

<param-value>2</param-value>

</init-param>

登入後複製

(十四)背景樣式

1

2

3

4

5

6

7

8

<init-param>

<description>干扰实现类</description>

<param-name>kaptcha.noise.impl</param-name>

<param-value>

<!-- com.google.code.kaptcha.impl.NoNoise -->

com.google.code.kaptcha.impl.DefaultNoise

</param-value>

</init-param>

登入後複製

(十五)背景實作類

1

2

3

4

5

6

7

<init-param>

<description>

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

</description>

<param-name>kaptcha.noise.color</param-name>

<param-value>black</param-value>

</init-param>

登入後複製

(十六)背景漸變顏色

1

2

3

4

5

6

7

8

9

10

11

<init-param>

<description>

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

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

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

</description>

<param-name>kaptcha.obscurificator.impl</param-name>

<param-value>

com.google.code.kaptcha.impl.WaterRipple

</param-value>

</init-param>

登入後複製

1

2

3

4

5

6

7

<init-param>

<description>背景实现类</description>

<param-name>kaptcha.background.impl</param-name>

<param-value>

com.google.code.kaptcha.impl.DefaultBackground

</param-value>

</init-param>

登入後複製

(十六)文字渲染器

1

2

3

4

5

6

7

8

9

10

<init-param>

<description>背景颜色渐变,开始颜色</description>

<param-name>kaptcha.background.clear.from</param-name>

<param-value>green</param-value>

</init-param>

<init-param>

<description>背景颜色渐变,结束颜色</description>

<param-name>kaptcha.background.clear.to</param-name>

<param-value>white</param-value>

</init-param>

登入後複製

(十七)文字渲染器圖片的驗證碼會保存在Session中,其中的值為

1

2

3

4

5

6

7

<init-param>

<description> 文字渲染器 </description>

<param-name>kaptcha.word.impl</param-name>

<param-value>

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

</param-value>

</init-param>

登入後複製

(十九)圖片實現類別

1

2

3

4

5

<init-param>

<description> session中存放验证码的key键 </description>

<param-name>kaptcha.session.key</param-name>

<param-value>KAPTCHA_SESSION_KEY</param-value>

</init-param>

登入後複製

(二十)文字實作類別(可透過重寫該類別來實現驗證碼為中文)

1

2

3

4

5

6

7

<init-param>

<description>图片实现类</description>

<param-name>kaptcha.producer.impl</param-name>

<param-value>

com.google.code.kaptcha.impl.DefaultKaptcha

</param-value>

</init-param>

登入後複製

重寫文字實作類,實作驗證碼為中文:

1.建立一個類別,繼承Configurable 實作TextProducer(在jar包)

1

2

3

4

5

6

7

<init-param>

<description>文本实现类</description>

<param-name>kaptcha.textproducer.impl</param-name>

<param-value>

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

</param-value>

</init-param>

登入後複製

2.修改Web.xml設定

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

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;

}

}

登入後複製

六、擴充(加法驗證碼的實現)

1.重寫KaptchaServlet類

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

<init-param>

<description>文本实现类</description>

<param-name>kaptcha.textproducer.impl</param-name>

<param-value>

ChineseText

</param-value>

</init-param>

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

[html] view plain copy

<body>

<%

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

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);

%>

</body>

登入後複製

2.修改設定檔

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

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();

}

}

}

登入後複製

以上所述是小編給大家介紹的使用開源工具製作網頁驗證碼的方法,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回覆大家的。在此也非常感謝大家對PHP中文網的支持!

更多使用開源工具製作網頁驗證碼的方法相關文章請關注PHP中文網!

相關標籤:
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板