Java生成随机验证码

  1. package com.tg.snail.core.util;
  2. import java.awt.Color;
  3. import java.awt.Font;
  4. import java.awt.Graphics;
  5. import java.awt.image.BufferedImage;
  6. import java.io.IOException;
  7. import java.util.Random;
  8. import javax.imageio.ImageIO;
  9. import javax.servlet.http.HttpServletRequest;
  10. import javax.servlet.http.HttpServletResponse;
  11. import javax.servlet.http.HttpSession;
  12. import org.apache.log4j.Logger;
  13. import org.springframework.util.StringUtils;
  14. /**
  15. * 验证码生成工具类
  16. * @author penghy
  17. * @date 2014-02-27
  18. */
  19. public abstract class RandomCodeUtils {
  20. private static Logger logger = Logger.getLogger(RandomCodeUtils.class);
  21. private static final String RANDOM_CODE_KEY = "random"; //验证码放在session中的key
  22. private static final int CODE_NUM = 4; //验证码字符个数
  23. // 设置图形验证码中字符串的字体和大小
  24. private static Font myFont = new Font("Arial", Font.BOLD, 16);
  25. //随机字符数组
  26. private static char[] charSequence = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789".toCharArray();
  27. private static Random random = new Random();
  28. /**
  29. * 生成随机验证码
  30. * @param request
  31. * @param response
  32. */
  33. public static void createRandomCode(HttpServletRequest request, HttpServletResponse response){
  34. // 阻止生成的页面内容被缓存,保证每次重新生成随机验证码
  35. response.setHeader("Pragma", "No-cache");
  36. response.setHeader("Cache-Control", "no-cache");
  37. response.setDateHeader("Expires", 0);
  38. response.setContentType("image/jpeg");
  39. // 指定图形验证码图片的大小
  40. int width = 80, height = 25;
  41. // 生成一张新图片
  42. BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
  43. // 在图片中绘制内容
  44. Graphics g = image.getGraphics();
  45. g.setColor(getRandomColor(200, 250));
  46. g.fillRect(1, 1, width - 1, height - 1);
  47. g.setColor(new Color(102, 102, 102));
  48. g.drawRect(0, 0, width - 1, height - 1);
  49. g.setFont(myFont);
  50. // 随机生成线条,让图片看起来更加杂乱
  51. g.setColor(getRandomColor(160, 200));
  52. for (int i = 0; i < 155; i++) {
  53. int x = random.nextInt(width - 1);// 起点的x坐标
  54. int y = random.nextInt(height - 1);// 起点的y坐标
  55. int x1 = random.nextInt(6) + 1;// x轴偏移量
  56. int y1 = random.nextInt(12) + 1;// y轴偏移量
  57. g.drawLine(x, y, x + x1, y + y1);
  58. }
  59. // 随机生成线条,让图片看起来更加杂乱
  60. for (int i = 0; i < 70; i++) {
  61. int x = random.nextInt(width - 1);
  62. int y = random.nextInt(height - 1);
  63. int x1 = random.nextInt(12) + 1;
  64. int y1 = random.nextInt(6) + 1;
  65. g.drawLine(x, y, x - x1, y - y1);
  66. }
  67. // 该变量用来保存系统生成的随机字符串
  68. StringBuilder sRand = new StringBuilder(CODE_NUM);
  69. for (int i = 0; i < CODE_NUM; i++) {
  70. // 取得一个随机字符
  71. String tmp = getRandomChar();
  72. sRand.append(tmp);
  73. // 将系统生成的随机字符添加到图形验证码图片上
  74. g.setColor(new Color(20 + random.nextInt(110), 20 + random.nextInt(110), 20 + random.nextInt(110)));
  75. g.drawString(tmp, 15 * i + 10, 20);
  76. }
  77. // 取得用户Session
  78. HttpSession session = request.getSession(true);
  79. // 将系统生成的图形验证码添加
  80. session.setAttribute(RANDOM_CODE_KEY, sRand.toString());
  81. g.dispose();
  82. // 输出图形验证码图片
  83. try {
  84. ImageIO.write(image, "JPEG", response.getOutputStream());
  85. } catch (IOException e) {
  86. e.printStackTrace();
  87. }
  88. }
  89. /**
  90. * 检查用户输入的验证码是否正确
  91. * @param request
  92. * @param inputCode
  93. * @return true: 正确, false:不正确
  94. */
  95. public static boolean checkRandomCode(HttpServletRequest request, String inputCode){
  96. HttpSession session = request.getSession(false);
  97. if(session != null && StringUtils.hasLength(inputCode)){
  98. String code = (String) session.getAttribute(RANDOM_CODE_KEY);
  99. logger.info("inputCode:"+inputCode.trim()+",code:"+code);
  100. return inputCode.trim().equalsIgnoreCase(code);
  101. }
  102. return false;
  103. }
  104. /**
  105. * 移除验证码
  106. * @param request
  107. * @param inputCode
  108. */
  109. public static void removeRandomCode(HttpServletRequest request){
  110. HttpSession session = request.getSession(false);
  111. if(session != null){
  112. session.removeAttribute(RANDOM_CODE_KEY);
  113. }
  114. }
  115. // 生成随机颜色
  116. private static Color getRandomColor(int fc, int bc) {
  117. Random random = new Random();
  118. if (fc > 255)
  119. fc = 255;
  120. if (bc > 255)
  121. bc = 255;
  122. int r = fc + random.nextInt(bc - fc);
  123. int g = fc + random.nextInt(bc - fc);
  124. int b = fc + random.nextInt(bc - fc);
  125. return new Color(r, g, b);
  126. }
  127. // 随机生成一个字符
  128. private static String getRandomChar() {
  129. int index = random.nextInt(charSequence.length);
  130. return String.valueOf(charSequence[index]);
  131. }
  132. }
上一篇:jQuery——动态给表格添加序号


下一篇:Jquery动态操作checkbox