Chinaunix首页 | 论坛 | 博客
  • 博客访问: 232238
  • 博文数量: 127
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 1545
  • 用 户 组: 普通用户
  • 注册时间: 2013-03-17 01:33
个人简介

知码网伴您成长

文章分类

全部博文(127)

文章存档

2015年(10)

2014年(4)

2013年(113)

我的朋友

分类: IT业界

2013-07-20 14:06:14

关于java 的解决方法   本篇文章主要是为大家介绍,在java中,使用图形验证码的解决方法。需要的朋友可以参考一下

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);
}
}
   以上内容由知码网提供。“-验证码识别、答题云平台”为您提供一个稳定、快速和安全的云端验证码识别和答题平台。
文章摘自:
阅读(482) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~