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>

Java代码随机生成图片验证码的更多相关文章

  1. python 全栈开发,Day85(Git补充,随机生成图片验证码)

    昨日内容回顾 第一部分:django相关 1.django请求生命周期 1. 当用户在浏览器中输入url时,浏览器会生成请求头和请求体发给服务端 请求头和请求体中会包含浏览器的动作(action),这 ...

  2. Django登录(含随机生成图片验证码)注册实例

    登录,生成随机图片验证码 一.登录 - 随机生成图片验证码 1.随机生成验证码 Python随机生成图片验证码,需要使用PIL模块,安装方式如下: pip3 install pillow 1)创建图片 ...

  3. springboot搭建项目,实现Java生成随机图片验证码。

    这篇文章主要介绍了如何通过Java如何生成验证码并验证.验证码的作用我想必大家都知道,话不多说开始实施! 首先创建一个springboot项目以下是项目结构,内有utli工具类.存放生成图片验证码方法 ...

  4. Java生成随机图片验证码

    前台html代码 [Java] 纯文本查看 复制代码 ? 01 02 03 04 05 06 07 08 09 10 <div style="margin-top: 50px;&quo ...

  5. Django---登录(含随机生成图片验证码)、注册示例讲解

    登录(验证码).注册功能具体代码 # urls.py from django.contrib import admin from django.urls import path from app01 ...

  6. java代码发送邮箱验证码与qq邮箱smtp服务

    发送邮箱的类封装,在此之前需要一个jar包  javax.mail.jar 下载链接https://github.com/javaee/javamail/releases/download/JAVAM ...

  7. servletResponse 随机生成图片验证码

    /***********************************servlet页面************************************/ package response; ...

  8. java代码--------随机输出100个随机数,要求每行10个数

    总结:不敢爱你么开口 package com.sads; ///实现随机输出100个数字,数字是0到9之间,每行输出10个 public class Wss { public static void ...

  9. python 随机生成图片验证码背景RGB-浅色或者深色

    import random def random_color(is_light = True): return (random.randint(0 ,127) + int(is_light) * 12 ...

随机推荐

  1. HDU 6447 YJJ’s Salesman (树状数组 + DP + 离散)

    题意: 二维平面上N个点,从(0,0)出发到(1e9,1e9),每次只能往右,上,右上三个方向移动, 该N个点只有从它的左下方格点可达,此时可获得收益.求该过程最大收益. 分析:我们很容易就可以想到用 ...

  2. SocLib能耗评估

    相关论文链接: https://ac.els-cdn.com/S0167926015000231/1-s2.0-S0167926015000231-main.pdf?_tid=4a67f1a4-b21 ...

  3. C数据结构与算法-算法复杂度

    算法复杂度分为时间复杂度T(n)和空间复杂度F(n) 时间复杂度:也就是执行算法程序所需的时间,与硬件的速度.编程语言的级别.编译器的优化.数据的规模.执行的频度有关,前三个有很大的不确定性,所以衡量 ...

  4. 【JavaEE】tomcat部署项目的几种方式 .

    一.静态部署1.直接将web项目文件件拷贝到webapps 目录中     Tomcat的Webapps目录是Tomcat默认的应用目录,当服务器启动时,会加载所有这个目录下的应用.所以可以将JSP程 ...

  5. Vim相关问题

    1.vim格式修改 进入配置文件: $ sudo vim /etc/vim/vimrc 在文件末尾添加: #默认查找忽略大小写 set ignorecase #如果有一个大写字母,则切换到大小姐敏感查 ...

  6. jquery调用asp.net 页面后台的实现代码

    先创建一个aspx页面编写一个客户端控件<input type="button" id="AjaxDemo" value="AjaxDemo&q ...

  7. asp.net MVC 4.0 Controller回顾——ModelBinding实现过程

    以DefaultModelBinder为例 为简单模型绑定(BindSimpleModel)和复杂模型绑定(BindComplexModel) public virtual object BindMo ...

  8. JavaSE_5_线程

    1.多线程中的i++线程安全吗?为什么? 不安全,因为每个线程都有自己的工作内存,每个线程需要对共享变量操作时必须把共享变量从主内存中加载到自己的工作内存,等完成操作后再保存到内存中,如果一个线程运算 ...

  9. 【干货】JavaScript DOM编程艺术学习笔记1-3

    从7月29号到8月8号,断断续续地看完了这本书,做了部分实践联系.总体感觉本书真的只能算是个入门,学完之后看到库的那一章才感觉是个大坑,实践中大部分应该都是用的现成的库吧,所以还要重新学习一个库,但是 ...

  10. Miner3D Developer 开发工具

    ——可视化的数据挖掘整合工具 在开发项目中,客户的要求多种多样.当开发者面临高挑战的工作时,完全可以选择Miner3D这样的软件,依赖其强大的数据可视化的特点,以及其他的明显的技术优势,提供给最终用户 ...