JavaWeb中登录验证码生成

1.页面代码

<html>
<head>
    <title>Title</title>
    <script type="text/javascript" src="/resources/js/jquery-3.3.1.js" ></script>
    <script type="text/javascript" >
        function reloadCheckImg()
        {
            $("img").attr("src", "./img.jsp?t="+(new Date().getTime()));  //<img src="...">
        }
        $(document).ready(function(){
            $("#checkcodeId").blur(function(){
                var $checkcode = $("#checkcodeId").val();
                //校验   :文本框中输入的值 发送到服务端。
                //服务端: 获取文本框输入的值 ,和真实验证码图片中的值对比 ,并返回验证结果
                $.post(
                    "/CheckCodeServlet",//服务端地址
                    "checkcode="+$checkcode ,
                    function(result){//图片地址(imgs/right.jpg   imgs/wrong.jpg)
                        //result:  imgs/right.jpg
                        var resultHtml =  $("<img src='"+result+"' height='15' width='15px'   />") ;
                        $("#tip").html(resultHtml);
                    }
                );
            });
        });
    </script>
</head>
<body>
    验证码:
    <input type="text" name="checkcode" id="checkcodeId" size="4"  />
    <!-- 验证码-->

    <a href="javascript:reloadCheckImg();"> <img src="./img.jsp"/></a>

    <span id="tip">  </span>
</body>
</html>

2.绘制验证码

<%@ page import="java.awt.*" %>
<%@ page import="java.util.Random" %>
<%@ page import="java.awt.image.BufferedImage" %>
<%@ page import="javax.imageio.ImageIO" %>
<%@ page contentType="image/jpeg;charset=UTF-8" language="java" %>

<%!
     //随机产生颜色值
        public Color getColor(){
            Random ran = new Random() ;//Math.random()  0-1
            int r = ran.nextInt(256) ;
            int g = ran.nextInt(256) ;
            int b = ran.nextInt(256) ;
            return new Color(r,g,b) ;//red green blue  0-255
        }

        //产生验证码值
        public String getNum() {
        //  0-8999   1000-9999
        int ran = (int)( Math.random()*9000) +1000 ;
        return String.valueOf(ran) ;
        }
%>

<%

    //禁止缓存,防止验证码过期
    response.setHeader("Pragma","no-cache");
    response.setHeader("Cache-Control","no-cache");
    response.setHeader("Expires","0");

    //绘制验证码
    BufferedImage image = new BufferedImage(80,30,BufferedImage.TYPE_INT_RGB) ;
    //画笔
    Graphics graphics = image.getGraphics();
    graphics.fillRect(0,0,80,30);
    //绘制干扰线条
    for(int i=0;i<60;i++)
    {
        Random ran = new Random() ;
        int xBegin = ran.nextInt(80) ;//55
        int yBegin = ran.nextInt(30) ;

        int xEnd = ran.nextInt(xBegin +10 ) ;
        int yEnd = ran.nextInt(yBegin + 10) ;

        graphics.setColor( getColor());
        //绘制线条
        graphics.drawLine(xBegin,yBegin,xEnd,yEnd);
    }

    graphics.setFont(new Font("seif",Font.BOLD,20));
     //绘制验证码
     graphics.setColor(Color.BLACK);
     String checkCode = getNum() ; //2 1 3 4
    StringBuffer sb = new StringBuffer() ;
     for(int i=0;i<checkCode.length();i++){
         sb.append(checkCode.charAt(i)+" "  )  ;//验证码的每一位数字
     }

    graphics.drawString( sb.toString(), 15,20 );//绘制验证码

    //将验证码真实值 保存在session中,供使用时比较真实性
    session.setAttribute("CKECKCODE"  ,checkCode );

    //真实的产生图片
    ImageIO.write(image,"jpeg",  response.getOutputStream()) ;

    //关闭
    out.clear();
    out = pageContext.pushBody() ;  //<input type="image" src="xxx" />



%>

3.service调用

        String resultTip = null;
        //获取用户输入验证码
        String checkcodeClient =  request.getParameter("checkcode");
        //真实的验证码值
        String checkcodeServer = (String) request.getSession().getAttribute("CKECKCODE");
        if(checkcodeServer.equals(checkcodeClient)) {
            resultTip = "/resources/image/right.jpg";
        }else {
            resultTip = "/resources/image/wrong.jpg";
        }
        response.setContentType("text/html;charset=UTF-8");
        PrintWriter writer = response.getWriter();
        writer.write(resultTip);
        writer.close();
        writer.flush();

 

posted @ 2020-03-09 19:01  尚宇园  阅读(431)  评论(0编辑  收藏  举报