注册
登录
论坛
搜索
全国城市地图
帮助
导航
默认风格
宝石蓝
fervor
jeans
uchome
fashion
greenwall
私人消息 (0)
公共消息 (0)
系统消息 (0)
好友消息 (0)
帖子消息 (0)
IT家园
»
免费资源
» 关于java 图形验证码的解决方法
返回列表
发帖
西空
发短消息
加为好友
西空
当前离线
UID
69412
帖子
229
精华
0
积分
457
阅读权限
30
在线时间
10 小时
注册时间
2011-10-27
最后登录
2013-7-31
家园秀才
帖子
229
积分
457
注册时间
2011-10-27
1
#
跳转到
»
正序看帖
打印
字体大小:
t
T
发表于 2013-7-19 14:43
|
只看该作者
关于java 图形验证码的解决方法
关于java 图形验证码的解决方法 本篇文章主要是为大家介绍,在java中,使用[url=ww.zhima365.com]图形验证码[/url]的解决方法。需要的朋友可以参考一下
package cn.response;
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.util.Random;
import javax.imageio.ImageIO;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
@SuppressWarnings("serial")
public class validatePicture extends HttpServlet {
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
try {
validateimage(request, response);
} catch (Exception e) {
e.printStackTrace();
}
}
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
doGet(request, response);
}
public static final int WIDTH = 120;
public static final int HEIGHT = 25;
public void validateimage(HttpServletRequest request,
HttpServletResponse response) throws Exception {
BufferedImage bi = new BufferedImage(WIDTH, HEIGHT,
BufferedImage.TYPE_INT_RGB);// 在内存中构建一幅图象
Graphics g = bi.getGraphics();
setBackGround(g);// 设置背景色
setBorder(g);// 设置边框
drawRandomLine(g);// 画干扰线
String random = drawRandomNum((Graphics2D) g);// 写随机数
request.getSession().setAttribute("random", random);
//request.getSession(false);
response.setContentType("image/jpeg");
// 设置不要缓存
response.setDateHeader("expries", -1);
response.setHeader("Cache-Control", "no-cache");
ImageIO.write(bi, "jpg", response.getOutputStream());
}
private String drawRandomNum(Graphics2D g) {
g.setColor(Color.RED);
g.setFont(new Font("宋体", Font.BOLD, 20));
// [u4e00-u9fa5]中文数字区间
String base = "u4e00u4f00u5e00u4e50u4e89u4f10u4e09";
StringBuffer sb = new StringBuffer();
int x = 5;
for (int i = 0; i < 4; i++) {
int degree = new Random().nextInt() % 30;
String ch = base.charAt(new Random().nextInt(base.length())) + "";
sb.append(ch);
g.rotate(degree * Math.PI / 180, x, 20);
g.drawString(ch, x, 20);
g.rotate(-degree * Math.PI / 180, x, 20);
x = x + 30;
}
System.out.println(sb.toString());
return sb.toString();
}
private void drawRandomLine(Graphics g) {
g.setColor(Color.GREEN);
for (int i = 0; i < 3; i++) {
int x1 = new Random().nextInt(WIDTH);
int y1 = new Random().nextInt(HEIGHT);
int x2 = new Random().nextInt(WIDTH);
int y2 = new Random().nextInt(HEIGHT);
g.drawLine(x1, y1, x2, y2);
}
}
private void setBorder(Graphics g) {
g.setColor(Color.BLUE);
g.drawRect(1, 1, WIDTH - 2, HEIGHT - 2);
}
private void setBackGround(Graphics g) {
g.setColor(Color.WHITE);
g.fillRect(0, 0, WIDTH, HEIGHT);
}
}
以上内容由知码网提供。“
知码网
-验证码识别、答题云平台”为您提供一个稳定、快速和安全的云端验证码识别和答题平台。
文章摘自:
www.zhima365.com
收藏
分享
www.mxde.com密西下载,密西软件,密西游戏,单机游戏,软件官方下载,游戏下载,常用软件,破解软件,游戏修改器,汉化软件,游戏补丁
返回列表
手机、数码、外设
体坛风云
心情驿站
高清MTV
动画音乐
外语学习
软件故障专区
江西省
站务管理
人文社科
[收藏此主题]
[关注此主题的新回复]
[通过 QQ、MSN 分享给朋友]