- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章Java生成图形验证码工具类由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
生成验证码效果 。
ValidateCode.java 验证码生成类 。
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
package
cn.dsna.util.images;
import
java.awt.Color;
import
java.awt.Font;
import
java.awt.Graphics2D;
import
java.awt.image.BufferedImage;
import
java.io.FileOutputStream;
import
java.io.IOException;
import
java.io.OutputStream;
import
java.util.Random;
import
javax.imageio.ImageIO;
/**
* 验证码生成器
* @author dsna
*
*/
public
class
ValidateCode {
// 图片的宽度。
private
int
width =
160
;
// 图片的高度。
private
int
height =
40
;
// 验证码字符个数
private
int
codeCount =
5
;
// 验证码干扰线数
private
int
lineCount =
150
;
// 验证码
private
String code =
null
;
// 验证码图片Buffer
private
BufferedImage buffImg=
null
;
private
char
[] codeSequence = {
'A'
,
'B'
,
'C'
,
'D'
,
'E'
,
'F'
,
'G'
,
'H'
,
'I'
,
'J'
,
'K'
,
'L'
,
'M'
,
'N'
,
'P'
,
'Q'
,
'R'
,
'S'
,
'T'
,
'U'
,
'V'
,
'W'
,
'X'
,
'Y'
,
'Z'
,
'1'
,
'2'
,
'3'
,
'4'
,
'5'
,
'6'
,
'7'
,
'8'
,
'9'
};
public
ValidateCode() {
this
.createCode();
}
/**
*
* @param width 图片宽
* @param height 图片高
*/
public
ValidateCode(
int
width,
int
height) {
this
.width=width;
this
.height=height;
this
.createCode();
}
/**
*
* @param width 图片宽
* @param height 图片高
* @param codeCount 字符个数
* @param lineCount 干扰线条数
*/
public
ValidateCode(
int
width,
int
height,
int
codeCount,
int
lineCount) {
this
.width=width;
this
.height=height;
this
.codeCount=codeCount;
this
.lineCount=lineCount;
this
.createCode();
}
public
void
createCode() {
int
x =
0
,fontHeight=
0
,codeY=
0
;
int
red =
0
, green =
0
, blue =
0
;
x = width / (codeCount +
2
);
//每个字符的宽度
fontHeight = height -
2
;
//字体的高度
codeY = height -
4
;
// 图像buffer
buffImg =
new
BufferedImage(width, height,BufferedImage.TYPE_INT_RGB);
Graphics2D g = buffImg.createGraphics();
// 生成随机数
Random random =
new
Random();
// 将图像填充为白色
g.setColor(Color.WHITE);
g.fillRect(
0
,
0
, width, height);
// 创建字体
ImgFontByte imgFont=
new
ImgFontByte();
Font font =imgFont.getFont(fontHeight);
g.setFont(font);
for
(
int
i =
0
; i < lineCount; i++) {
int
xs = random.nextInt(width);
int
ys = random.nextInt(height);
int
xe = xs+random.nextInt(width/
8
);
int
ye = ys+random.nextInt(height/
8
);
red = random.nextInt(
255
);
green = random.nextInt(
255
);
blue = random.nextInt(
255
);
g.setColor(
new
Color(red, green, blue));
g.drawLine(xs, ys, xe, ye);
}
// randomCode记录随机产生的验证码
StringBuffer randomCode =
new
StringBuffer();
// 随机产生codeCount个字符的验证码。
for
(
int
i =
0
; i < codeCount; i++) {
String strRand = String.valueOf(codeSequence[random.nextInt(codeSequence.length)]);
// 产生随机的颜色值,让输出的每个字符的颜色值都将不同。
red = random.nextInt(
255
);
green = random.nextInt(
255
);
blue = random.nextInt(
255
);
g.setColor(
new
Color(red, green, blue));
g.drawString(strRand, (i +
1
) * x, codeY);
// 将产生的四个随机数组合在一起。
randomCode.append(strRand);
}
// 将四位数字的验证码保存到Session中。
code=randomCode.toString();
}
public
void
write(String path)
throws
IOException {
OutputStream sos =
new
FileOutputStream(path);
this
.write(sos);
}
public
void
write(OutputStream sos)
throws
IOException {
ImageIO.write(buffImg,
"png"
, sos);
sos.close();
}
public
BufferedImage getBuffImg() {
return
buffImg;
}
public
String getCode() {
return
code;
}
}
|
ImgFontByte.java 。
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
|
package
cn.dsna.util.images;
import
java.io.ByteArrayInputStream;
import
java.awt.*;
/**
* ttf字体文件
* @author dsna
*
*/
public
class
ImgFontByte {
public
Font getFont(
int
fontHeight){
try
{
Font baseFont = Font.createFont(Font.TRUETYPE_FONT,
new
ByteArrayInputStream(hex2byte(getFontByteStr())));
return
baseFont.deriveFont(Font.PLAIN, fontHeight);
}
catch
(Exception e) {
return
new
Font(
"Arial"
,Font.PLAIN, fontHeight);
}
}
private
byte
[] hex2byte(String str) {
if
(str ==
null
)
return
null
;
str = str.trim();
int
len = str.length();
if
(len ==
0
|| len %
2
==
1
)
return
null
;
byte
[] b =
new
byte
[len /
2
];
try
{
for
(
int
i =
0
; i < str.length(); i +=
2
) {
b[i /
2
] = (
byte
) Integer
.decode(
"0x"
+ str.substring(i, i +
2
)).intValue();
}
return
b;
}
catch
(Exception e) {
return
null
;
}
}
/**
* ttf字体文件的十六进制字符串
* @return
*/
private
String getFontByteStr(){
return
null
;
return
str;
//字符串太长 在附件中找
}
}
|
ValidateCodeServlet.java Servlet调用方法 。
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
|
package
cn.dsna.util.images;
import
java.io.IOException;
import
javax.servlet.ServletException;
import
javax.servlet.http.HttpServlet;
import
javax.servlet.http.HttpServletRequest;
import
javax.servlet.http.HttpServletResponse;
import
javax.servlet.http.HttpSession;
public
class
ValidateCodeServlet
extends
HttpServlet {
private
static
final
long
serialVersionUID = 1L;
@Override
protected
void
doGet(HttpServletRequest reqeust,
HttpServletResponse response)
throws
ServletException, IOException {
// 设置响应的类型格式为图片格式
response.setContentType(
"image/jpeg"
);
//禁止图像缓存。
response.setHeader(
"Pragma"
,
"no-cache"
);
response.setHeader(
"Cache-Control"
,
"no-cache"
);
response.setDateHeader(
"Expires"
,
0
);
HttpSession session = reqeust.getSession();
ValidateCode vCode =
new
ValidateCode(
120
,
40
,
5
,
100
);
session.setAttribute(
"code"
, vCode.getCode());
vCode.write(response.getOutputStream());
}
/**
* web.xml 添加servlet
<servlet>
<servlet-name>validateCodeServlet</servlet-name>
<servlet-class>cn.dsna.util.images.ValidateCodeServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>validateCodeServlet</servlet-name>
<url-pattern>*.images</url-pattern>
</servlet-mapping>
在地址栏输入XXX/dsna.images 测试
*/
}
|
测试类 。
ValidateCodeTest.java 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package
cn.dsna.util.images;
import
java.io.IOException;
import
java.util.Date;
public
class
ValidateCodeTest {
/**
* @param args
*/
public
static
void
main(String[] args) {
ValidateCode vCode =
new
ValidateCode(
120
,
40
,
5
,
100
);
try
{
String path=
"D:/t/"
+
new
Date().getTime()+
".png"
;
System.out.println(vCode.getCode()+
" >"
+path);
vCode.write(path);
}
catch
(IOException e) {
e.printStackTrace();
}
}
}
|
web.xml 配置 。
1
2
3
4
5
6
7
8
|
<servlet>
<servlet-name>validateCodeServlet</servlet-name>
<servlet-
class
>cn.dsna.util.images.ValidateCodeServlet</servlet-
class
>
</servlet>
<servlet-mapping>
<servlet-name>validateCodeServlet</servlet-name>
<url-pattern>*.images</url-pattern>
</servlet-mapping>
|
以上所述是小编给大家介绍的Java生成图形验证码工具类,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对我网站的支持! 。
最后此篇关于Java生成图形验证码工具类的文章就讲到这里了,如果你想了解更多关于Java生成图形验证码工具类的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我在网上找到了这个很棒的小代码,但它似乎没有在正确删除空格后比较两个字符串?我知道一些js,但这里的任何错误都超出了我的理解范围。希望有人知道这个问题的答案。 注意:它似乎还根据 channel 的数
如何使用 requirejs 导入 recaptcha。我已经尝试了几件事,但没有任何效果。 我需要这样做,以便能够在加载后使用 reCaptcha 的渲染方法自行渲染它。 require.confi
我可以做些什么来尝试解决之前一直有效但现在在尝试访问 javascript 文件时返回 404 的重新验证码问题。 我不认为这是编码问题,因为他们今天下午就起来了。 值得一提的是,我的两个使用 re-
好的,我们在生产中实现了 Recaptcha。我们收到错误是因为它无法到达使用该服务所需的 IP 地址。我们为 IP 地址打开一个端口以到达 Google。没问题。我们这样做并显式配置该 IP 地址以
我正在使用 Robot Framework + Selenium2Library 为 Web 编写验收测试。关键是 web 包含一些我无法自动化的输入字段 (CAPTCHA),并且我无法告诉我的供应商
我正在尝试实现验证码。我正在使用 jquery (ajax) 调用验证脚本 (http://www.google.com/recaptcha/api/verify)。这将数据类型限制为 JSONP,G
我在站点中使用 scrapy 提交表单 https://www.barefootstudent.com/jobs (任何进入页面的链接等http://www.barefootstudent.com/l
我经营一个游戏网站,所以我有很多用户登录,他们可以每两分钟做一次某些事情。 我在某些地方有一个 CAPTCHA 系统,对于某些东西,它总是要求输入代码,而对于其他东西,它会每 10 分钟询问一次。 我
thinkphp中的验证码是可以直接调用的,非常方便,我们看一下 Think 文件夹下 有一个名为verify.class.php的文件 首先 我们要有一个模
我正在实现一个在注册表单上带有验证码的网站;我的第一次。我已经阅读了数十篇关于支持和反对论点以及所有各种实现的帖子。我对这一切很满意,但对我来说这是必要的邪恶。 我不明白的是为什么人们会在整个网络上的
我正在使用 Sitecore 8 update 3,目前我向 WFFM 表单添加了验证码并按下音频,但显示错误如下: [ArgumentNullException: Value cannot be n
我正在对我已经完成的网络系统部分进行一小部分升级,其中之一是确保我的 Google reCaptcha 的安全性正确。 目前,我使用此代码: //reCaptcha $Url = "https://w
我正在对我已经完成的网络系统部分进行一小部分升级,其中之一是确保我的 Google reCaptcha 的安全性正确。 目前,我使用此代码: //reCaptcha $Url = "https://w
我对制作 3D 验证码很感兴趣,我让它使用一种字体,如下所示: import string from matplotlib.font_manager import findSystemFonts im
大家。我是jquery初学者,想请教几个问题。 我正在为表单提交测试编写一个简单的数学验证码,我想每次按下“重置按钮”时生成一组新的随机数。 但是当我用谷歌搜索解决方案时,大多数人都在尝试重新加载页面
我的网站上有一个验证码,我认为样式被其他一些 css 覆盖了,正如您在下面的验证码底部看到的那样,它有点偏离.. 在 firebug 中发现 CSS 覆盖的最佳方法是什么?已经看了一段时间了,似乎无法
我在 Google Play 上有一个 PNR 查询应用程序。它工作得很好。但最近 Indian Railwys 在他们的 PNR 查询部分添加了验证码,因此我无法将正确的数据传递到服务器以获得正确的
我被指派为 joomla 中的自定义组件创建验证码验证,但我不知道如何正确地完成它。 我知道有许多可用的验证码插件,例如 recaptcha,但我需要使用公司创建的自定义验证码。 它在 session
本文实例讲述了php/JS实现的生成随机密码(验证码)功能。分享给大家供大家参考,具体如下: PHP写法: ?
我正在关注关于电话授权的 React Native firebase 文档 ( https://rnfirebase.io/docs/v5.x.x/auth/phone-auth ),并且对是否需要(
我是一名优秀的程序员,十分优秀!