美文网首页
【Java】【web】使用工具类实现验证码

【Java】【web】使用工具类实现验证码

作者: JerichoPH | 来源:发表于2017-04-08 09:58 被阅读38次

    使用工具类实现验证码

    public class CodeImg extends HttpServlet {
    
        public void doGet(HttpServletRequest request, HttpServletResponse response)
                throws ServletException, IOException {
            // 禁止浏览器使用缓存
            response.setHeader("pragam", "no-cache");
            response.setHeader("cache-control", "no-cache");
            response.setDateHeader("expires",0);
        
            ValidateCode vc = new ValidateCode(110, 25, 4, 9);
            vc.write(response.getOutputStream());
        }
        
        public void doPost(HttpServletRequest request, HttpServletResponse response)
                throws ServletException, IOException {
            this.doGet(request, response);
        }
    
    }
    

    相关文章

      网友评论

          本文标题:【Java】【web】使用工具类实现验证码

          本文链接:https://www.haomeiwen.com/subject/faclattx.html