博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
struts2生成随机验证码图片
阅读量:6591 次
发布时间:2019-06-24

本文共 5167 字,大约阅读时间需要 17 分钟。

之前想做一个随机验证码的功能,自己也搜索了一下别人写的代码,然后自己重新用struts2实现了一下,现在将我自己实现代码贴出来!大家有什么意见都可以指出来!

首先是生成随机验证码图片的action:

CreateImageAction:

package com.xiaoluo.action;import java.awt.Color;import java.awt.Font;import java.awt.Graphics;import java.awt.image.BufferedImage;import java.io.ByteArrayInputStream;import java.io.ByteArrayOutputStream;import java.util.Random;import javax.imageio.ImageIO;import javax.servlet.http.HttpServletResponse;import javax.servlet.http.HttpSession;import org.apache.struts2.ServletActionContext; import com.opensymphony.xwork2.ActionSupport;public class CreateImageAction extends ActionSupport{    private ByteArrayInputStream inputStream;    private static int WIDTH = 60;    private static int HEIGHT = 20;    public ByteArrayInputStream getInputStream()    {        return inputStream;    }    public void setInputStream(ByteArrayInputStream inputStream)    {        this.inputStream = inputStream;    } private static String createRandom()    {        String str = "0123456789qwertyuiopasdfghjklzxcvbnm";        char[] rands = new char[4];        Random random = new Random();        for (int i = 0; i < 4; i++)        {            rands[i] = str.charAt(random.nextInt(36));        }        return new String(rands);    }    private void drawBackground(Graphics g)    {        // 画背景        g.setColor(new Color(0xDCDCDC));        g.fillRect(0, 0, WIDTH, HEIGHT);        // 随机产生 120 个干扰点        for (int i = 0; i < 120; i++)        {            int x = (int) (Math.random() * WIDTH);            int y = (int) (Math.random() * HEIGHT);            int red = (int) (Math.random() * 255);            int green = (int) (Math.random() * 255);            int blue = (int) (Math.random() * 255);            g.setColor(new Color(red, green, blue));            g.drawOval(x, y, 1, 0);        }    }    private void drawRands(Graphics g, String rands)    {        g.setColor(Color.BLACK);        g.setFont(new Font(null, Font.ITALIC | Font.BOLD, 18));        // 在不同的高度上输出验证码的每个字符        g.drawString("" + rands.charAt(0), 1, 17);        g.drawString("" + rands.charAt(1), 16, 15);        g.drawString("" + rands.charAt(2), 31, 18);        g.drawString("" + rands.charAt(3), 46, 16);        System.out.println(rands);    }    @Override    public String execute() throws Exception    {        HttpServletResponse response = ServletActionContext.getResponse();        // 设置浏览器不要缓存此图片        response.setHeader("Pragma", "no-cache");        response.setHeader("Cache-Control", "no-cache");        response.setDateHeader("Expires", 0);        String rands = createRandom();        BufferedImage image = new BufferedImage(WIDTH, HEIGHT,                BufferedImage.TYPE_INT_RGB);        Graphics g = image.getGraphics();        // 产生图像        drawBackground(g);        drawRands(g, rands);        // 结束图像 的绘制 过程, 完成图像        g.dispose();        ByteArrayOutputStream outputStream = new ByteArrayOutputStream();        ImageIO.write(image, "jpeg", outputStream);        ByteArrayInputStream input = new ByteArrayInputStream(outputStream                .toByteArray());        this.setInputStream(input);        HttpSession session = ServletActionContext.getRequest().getSession();        session.setAttribute("checkCode", rands);                input.close();                outputStream.close();        return SUCCESS;    }}

以上是生成随机验证码图片的action,将生成的随机数放到session里,然后页面提交到验证随机数的action:

LoginValidateAction:

package com.xiaoluo.action;import javax.servlet.http.HttpSession;import org.apache.struts2.ServletActionContext;import com.opensymphony.xwork2.ActionSupport;public class LoginValidateAction extends ActionSupport{    private String checkCode;        public String getCheckCode()    {        return checkCode;    }    public void setCheckCode(String checkCode)    {        this.checkCode = checkCode;    }    @Override    public String execute() throws Exception    {        return SUCCESS;    }        @Override    public void validate()    {        HttpSession session = ServletActionContext.getRequest().getSession();                String checkCode2 = (String)session.getAttribute("checkCode");                if(!checkCode.equals(checkCode2))        {            this.addActionError("输入的验证码不正确,请重新输入!");        }    }}

下面是struts.xml配置部分代码:

      
image/jpeg
inputStream
      
/success.jsp
/login.jsp

最后就是jsp部分的代码:

login.jsp:

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%><%@ taglib prefix="s" uri="/struts-tags"%><%String path = request.getContextPath();String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";%>              My JSP 'login.jsp' starting page        

带有验证码的登陆界面

用户名:
密码 :
验证码:
           

到此,就完成用struts2生成随机验证码图片以及实现登陆验证啦!

转载地址:http://hazio.baihongyu.com/

你可能感兴趣的文章
Top 10 mistakes in Eclipse Plug-in Development
查看>>
Directx教程(23) 简单的光照模型(2)
查看>>
Java 并发性和多线程
查看>>
IE6下frameset横向滚动条BUG
查看>>
Python线程专题9:线程终止与挂起、实用工具函数
查看>>
用ASP.NET Core 2.1 建立规范的 REST API -- 翻页/排序/过滤等
查看>>
哈默尔的核心竞争力--《可以量化的管理学》
查看>>
Unity中关于作用力方式ForceMode的功能注解
查看>>
view生命周期的一个找父类的控件的方法
查看>>
物理读之LRU(最近最少被使用)的深入解析
查看>>
写给将要毕业的学弟学妹们的感言
查看>>
mybatis-ehcache 用法配置备忘
查看>>
Python2.7升级到3.0 HTMLTestrunner报错解决方法
查看>>
去掉VS2012中的红色波浪下划线
查看>>
建立Git版本库管理框架例子
查看>>
nginx防止部分DDOS攻击
查看>>
编写一个截取字符串的函数,输入为一个字符串和字节数,输出为按字节截取的字符串。 但是要保证汉字......
查看>>
number_format() 函数定义和用法
查看>>
Java8中聚合操作collect、reduce方法详解
查看>>
查看记录
查看>>