本篇文章为大家展示了Javaweb中怎么实现动态图片验证码功能,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。
创新互联建站成立于2013年,是专业互联网技术服务公司,拥有项目做网站、网站建设网站策划,项目实施与项目整合能力。我们以让每一个梦想脱颖而出为使命,1280元抚宁做网站,已为上家服务,为抚宁各地企业和个人服务,联系电话:18980820575
验证码
防止恶意表单注册
生成验证码图片
定义宽高
int width = 100;int height = 50;
使用BufferedImage再内存中生成图片
BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
绘制背景和边框
Graphics g = image.getGraphics();g.setColor(Color.WHITE);g.fillRect(0, 0, width, height);g.setColor(Color.BLACK);g.drawRect(0, 0, width - 1, height - 1);
创建随机字符集和随机数对象
//字符集String str = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefgjijklmnopqrstuvwxyz";//随机数Random ran = new Random();
创建随机颜色生成方法
private Color getRandomColor(Random random) { //获取随机颜色 int colorIndex = random.nextInt(3); switch (colorIndex) { case 0: return Color.BLUE; case 1: return Color.GREEN; case 2: return Color.RED; case 3: return Color.YELLOW; default: return Color.MAGENTA; }}
绘制验证码字符
//绘制验证码for (int i = 0; i < 4; i++) { //获取随机字符 int index = ran.nextInt(str.length()); char ch = str.charAt(index); //获取随机色 Color randomColor = getRandomColor(ran); g.setColor(randomColor); //设置字体 Font font = new Font("宋体", Font.BOLD, height / 2); g.setFont(font); //写入验证码 g.drawString(ch + "", (i == 0) ? width / 4 * i + 2 : width / 4 * i, height - height / 4);}
绘制干扰线
//干扰线for (int i = 0; i < 10; i++) { int x1 = ran.nextInt(width); int x2 = ran.nextInt(width); int y1 = ran.nextInt(height); int y2 = ran.nextInt(height); Color randomColor = getRandomColor(ran); g.setColor(randomColor); g.drawLine(x1, x2, y1, y2);}
使用ImageIO输出图片
ImageIO.write(image, "jpg", resp.getOutputStream());
成果图
实现刷新效果
新建html页面使用img标签实现图片展示
使用js实现刷新效果
//点击图片时var img = document.getElementById("identcode");img.onclick = function (){ refesh();}//点击连接时var a = document.getElementById("refesh");a.onclick = function (){ refesh(); //返回false防止a标签默认href行为 return false;}function refesh() { /** * 由于路径相同时浏览器会自动调用缓存中的图片 * 所以在连接后加时间戳解决此问题 */ var date = new Date().getTime(); img.src = "identcode?" + date;}
上述内容就是Javaweb中怎么实现动态图片验证码功能,你们学到知识或技能了吗?如果还想学到更多技能或者丰富自己的知识储备,欢迎关注创新互联行业资讯频道。