生成带链接的二维码

-1.新建一个工具类:

代码块

package com.hysm.tools;
import java.awt.Color;
import java.awt.Graphics2D;
import java.awt.image.BufferedImage;
import java.io.File;

import javax.imageio.ImageIO;
import javax.servlet.http.HttpServletResponse;
import com.swetake.util.Qrcode;


public class EncoderHandler {
/**
     * 生成二维码(QRCode)图片
     * @param content
     * @param imgPath
     */
    public void encoderQRCode(String content, String imgPath) {
        try {
            Qrcode qrcodeHandler = new Qrcode();
            qrcodeHandler.setQrcodeErrorCorrect('M');
            qrcodeHandler.setQrcodeEncodeMode('B');
            qrcodeHandler.setQrcodeVersion(7);
            System.out.println(content);
            byte[] contentBytes = content.getBytes("gb2312");
            BufferedImage bufImg = new BufferedImage(140, 140, BufferedImage.TYPE_INT_RGB);
            Graphics2D gs = bufImg.createGraphics();
            gs.setBackground(Color.WHITE);
            gs.clearRect(0, 0, 140, 140);
            // 设定图像颜色 > BLACK
            gs.setColor(Color.BLACK);
            // 设置偏移量 不设置可能导致解析出错
            int pixoff = 2;
            // 输出内容 > 二维码
            if (contentBytes.length > 0 && contentBytes.length < 240) {
                boolean[][] codeOut = qrcodeHandler.calQrcode(contentBytes);
                for (int i = 0; i < codeOut.length; i++) {
                    for (int j = 0; j < codeOut.length; j++) {
                        if (codeOut[j][i]) {
                            gs.fillRect(j * 3 + pixoff, i * 3 + pixoff, 3, 3);
                        }
                    }
                }
            } else {
                System.err.println("QRCode content bytes length = "
                        + contentBytes.length + " not in [ 0,120 ]. ");
            }
            gs.dispose();
            bufImg.flush();
            File imgFile = new File(imgPath);
            // 生成二维码QRCode图片
            ImageIO.write(bufImg, "png", imgFile);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        String imgPath = "D:/Michael_QRCode.png";
        String content = "http://www.baidu.com";
        EncoderHandler handler = new EncoderHandler();
        handler.encoderQRCode(content, imgPath);
        System.out.println("encoder QRcode success");
    }
}

-2.加载页面时生成二维码:

 <img  style="height:300px;width:300px" id="img"/>  
    <script type="application/javascript" src="<%=path%>/js/jquery-1.11.0.min.js"></script>
    <script type="text/javascript">
    $(function(){
    $.ajax({
  url:'<%=basePath%>query/code.do',
  dataType:'text',
  type:'post',
  success:function(data){
  if(data!=null){
  $("#img").attr("src","<%=basePath%>code/"+data);
  }
} 
  });
    });
    </script>

-3.controller层:

@RequestMapping("/code.do")
@ResponseBody
public void code(HttpServletResponse response,HttpServletRequest request){
String savepath = request.getSession().getServletContext().getRealPath("/")+"code/";
String uuid=CommonUtil.getT_UUID();
String imgPath = savepath+uuid+".png";
        String content = "https://pay.weixin.qq.com/wiki/doc/api/wap.php?chapter=15_1#";
        EncoderHandler handler = new EncoderHandler();
        handler.encoderQRCode(content, imgPath);
        PrintWriter out=null;
        try {
out=response.getWriter();
out.print(uuid+".png");
System.out.println("imgPath:"+imgPath);
} catch (IOException e) {
e.printStackTrace();
}
}
  • 2
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值