1. package com.rchm.util.images;
  2. import java.awt.Color;
  3. import java.awt.Font;
  4. import java.awt.Graphics2D;
  5. import java.awt.image.BufferedImage;
  6. import java.io.FileOutputStream;
  7. import java.io.IOException;
  8. import java.io.OutputStream;
  9. import java.util.Random;
  10. import javax.imageio.ImageIO;
  11. /**
  12. * 验证码生成器
  13. */
  14. public class ValidateCode {
  15. // 图片的宽度。
  16. private int width = 160;
  17. // 图片的高度。
  18. private int height = 40;
  19. // 验证码字符个数
  20. private int codeCount = 5;
  21. // 验证码干扰线数
  22. private int lineCount = 150;
  23. // 验证码
  24. private static String code = null;
  25. // 验证码图片Buffer
  26. private BufferedImage buffImg=null;
  27. private char[] codeSequence = { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J','K', 'L',
  28. 'M', 'N',  'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W','X', 'Y',
  29. 'Z',  '1', '2', '3', '4', '5', '6', '7', '8', '9' };
  30. public  ValidateCode() {
  31. this.createCode();
  32. }
  33. /**
  34. *
  35. * @param width 图片宽
  36. * @param height 图片高
  37. */
  38. public  ValidateCode(int width,int height) {
  39. this.width=width;
  40. this.height=height;
  41. this.createCode();
  42. }
  43. /**
  44. *
  45. * @param width 图片宽
  46. * @param height 图片高
  47. * @param codeCount 字符个数
  48. * @param lineCount 干扰线条数
  49. */
  50. public  ValidateCode(int width,int height,int codeCount,int lineCount) {
  51. this.width=width;
  52. this.height=height;
  53. this.codeCount=codeCount;
  54. this.lineCount=lineCount;
  55. this.createCode();
  56. }
  57. public void createCode() {
  58. int x = 0,fontHeight=0,codeY=0;
  59. int red = 0, green = 0, blue = 0;
  60. x = width / (codeCount +2);//每个字符的宽度
  61. fontHeight = height - 2;//字体的高度
  62. codeY = height - 4;
  63. // 图像buffer
  64. buffImg = new BufferedImage(width, height,BufferedImage.TYPE_INT_RGB);
  65. Graphics2D g = buffImg.createGraphics();
  66. // 生成随机数
  67. Random random = new Random();
  68. // 将图像填充为白色
  69. g.setColor(Color.WHITE);
  70. g.fillRect(0, 0, width, height);
  71. // 创建字体
  72. ImgFontByte imgFont=new ImgFontByte();
  73. Font font =imgFont.getFont(fontHeight);
  74. g.setFont(font);
  75. for (int i = 0; i < lineCount; i++) {
  76. int xs = random.nextInt(width);
  77. int ys = random.nextInt(height);
  78. int xe = xs+random.nextInt(width/8);
  79. int ye = ys+random.nextInt(height/8);
  80. red = random.nextInt(255);
  81. green = random.nextInt(255);
  82. blue = random.nextInt(255);
  83. g.setColor(new Color(red, green, blue));
  84. g.drawLine(xs, ys, xe, ye);
  85. }
  86. // randomCode记录随机产生的验证码
  87. StringBuffer randomCode = new StringBuffer();
  88. // 随机产生codeCount个字符的验证码。
  89. for (int i = 0; i < codeCount; i++) {
  90. String strRand = String.valueOf(codeSequence[random.nextInt(codeSequence.length)]);
  91. // 产生随机的颜色值,让输出的每个字符的颜色值都将不同。
  92. red = random.nextInt(255);
  93. green = random.nextInt(255);
  94. blue = random.nextInt(255);
  95. g.setColor(new Color(red, green, blue));
  96. g.drawString(strRand, (i + 1) * x, codeY);
  97. // 将产生的四个随机数组合在一起。
  98. randomCode.append(strRand);
  99. }
  100. // 将四位数字的验证码保存到Session中。
  101. code = randomCode.toString();
  102. }
  103. public void write(String path) throws IOException {
  104. OutputStream sos = new FileOutputStream(path);
  105. this.write(sos);
  106. }
  107. public void write(OutputStream sos) throws IOException {
  108. ImageIO.write(buffImg, "png", sos);
  109. sos.close();
  110. }
  111. public BufferedImage getBuffImg() {
  112. return buffImg;
  113. }
  114. public static String getCode() {
  115. return code;
  116. }
  117. }

在 servlet 中使用该类:

  1. package com.rchm.util.images;
  2. import java.io.IOException;
  3. import javax.servlet.ServletException;
  4. import javax.servlet.http.HttpServlet;
  5. import javax.servlet.http.HttpServletRequest;
  6. import javax.servlet.http.HttpServletResponse;
  7. import javax.servlet.http.HttpSession;
  8. public class ValidateCodeServlet extends HttpServlet {
  9. private static final long serialVersionUID = 1L;
  10. protected void doGet(HttpServletRequest request,HttpServletResponse response) throws ServletException, IOException {
  11. response.setContentType("image/jpeg");
  12. response.setHeader("Pragma", "no-cache");
  13. response.setHeader("Cache-Control", "no-cache");
  14. response.setDateHeader("Expires", 0);
  15. ValidateCode vCode = new ValidateCode(100,30,4,100);
  16. HttpSession session = request.getSession();
  17. session.removeAttribute("validateCode");
  18. vCode.write(response.getOutputStream());
  19. session.setAttribute("validateCode", vCode.getCode());
  20. vCode.write(response.getOutputStream());
  21. }
  22. }

在 web.xml配置Servlet访问路径:

    1. <servlet>
    2. <servlet-name>validateCodeServlet</servlet-name>
    3. <servlet-class>com.rchm.util.images.ValidateCodeServlet</servlet-class>
    4. </servlet>
    5. <servlet-mapping>
    6. <servlet-name>validateCodeServlet</servlet-name>
    7. <url-pattern>code.images</url-pattern>
05-26 06:47