• 生成二维码接口,前端调用接口将二维码显示在页面上


    主要是生成数字和字母4位的二维码

    我们会把生成的二维码放入到缓存中,有过期时间。当用二维码进行验证时需要根据key值拿到二维码的值,如果页面传过来的验证码和缓存中的一样,则说明验证码输入正确。

    @RequestMapping(value = "/getImgCode")
    public void getImgCode(HttpServletRequest request, HttpServletResponse response, @RequestParam(defaultValue = "") String telephone) throws Exception {

    // 设置响应的类型格式为图片格式
    response.setContentType("image/jpeg");
    //禁止图像缓存。
    response.setHeader("Pragma", "no-cache");
    response.setHeader("Cache-Control", "no-cache");
    response.setDateHeader("Expires", 0);
    HttpSession session = request.getSession();

    ValidateCode vCode = new ValidateCode(140, 50, 4, 0);
    String key = String.format(KConstants.Key.IMGCODE, telephone.trim());
    SKBeanUtils.getRedisCRUD().set(key, vCode.getCode());
    SKBeanUtils.getRedisCRUD().expire(key, 300);

    session.setAttribute("code", vCode.getCode());
    // session.setMaxInactiveInterval(10*60);
    System.out.println("getImgCode telephone ===>" + telephone + " code " + vCode.getCode());
    vCode.write(response.getOutputStream());
    }

    /** 
    *
    * @param width 图片宽
    * @param height 图片高
    * @param codeCount 字符个数
    * @param lineCount 干扰线条数
    */
    public ValidateCode(int width,int height,int codeCount,int lineCount) {
    this.width=width;
    this.height=height;
    this.codeCount=codeCount;
    this.lineCount=lineCount;
    this.createCode();
    }

    public void createCode() {
    int x = 0,fontHeight=0,codeY=0;
    int red = 0, green = 0, blue = 0;

    x = width / (codeCount);//每个字符的宽度
    fontHeight = height -4;//字体的高度
    codeY = height - 8;

    // 图像buffer
    buffImg = new BufferedImage(width, height,BufferedImage.TYPE_INT_RGB);
    Graphics2D g = buffImg.createGraphics();
    // 生成随机数
    Random random = new Random();
    // 将图像填充为白色
    g.setColor(Color.WHITE);
    g.fillRect(0, 0, width, height);
    // 创建字体
    ImgFontByte imgFont = new ImgFontByte();
    Font font =imgFont.getFont(fontHeight);
    g.setFont(font);

    for (int i = 0; i < lineCount; i++) {
    int xs = random.nextInt(width);
    int ys = random.nextInt(height);
    int xe = xs+random.nextInt(width/8);
    int ye = ys+random.nextInt(height/8);
    red = random.nextInt(255);
    green = random.nextInt(255);
    blue = random.nextInt(255);
    g.setColor(new Color(red, green, blue));
    g.drawLine(xs, ys, xe, ye);
    }

    // randomCode记录随机产生的验证码
    StringBuffer randomCode = new StringBuffer();
    // 随机产生codeCount个字符的验证码。
    for (int i = 0; i < codeCount; i++) {
    String strRand = String.valueOf(codeSequence[random.nextInt(codeSequence.length)]);
    // 产生随机的颜色值,让输出的每个字符的颜色值都将不同。
    red =0;
    green = 0;
    blue =0;
    g.setColor(new Color(red, green, blue));
    g.drawString(strRand, (i) * x, codeY);
    // 将产生的四个随机数组合在一起。
    randomCode.append(strRand);
    }
    // 将四位数字的验证码保存到Session中。
    code=randomCode.toString();
    }

    页面:这样的话就得到生成的二维码。
    var url = "/getImgCode?telephone=" + account+"&timestamp=" + new Date().getTime();

    $("#getImgCode").show();
    $("#getImgCode").attr("src", url);
  • 相关阅读:
    Ruby on rails3新手谈(1):Ruby on rails环境搭建
    更灵活,更易维护的WebHandler之通用webHandler编码方案(2)
    .Net Remoting之windows服务部署
    Ruby on rails3新手谈(2):简单的例子helloworld
    分组取最新记录的SQL
    验证日期的Javascript
    使用Javascript创建遮罩层并模拟Alert、Confirm对话框
    取得当前鼠标的X,Y坐标,及相关属性的介绍
    B/S结构系统中使用Session遇到的问题
    IE与FireFox的兼容性问题
  • 原文地址:https://www.cnblogs.com/echo777/p/11549382.html
Copyright © 2020-2023  润新知