首页 > 其他 > 详细

生成二维码

时间:2017-02-18 22:34:25      阅读:257      评论:0      收藏:0      [点我收藏+]

  以下是生成二维码的具体代码:

   int width=300;//设置二维码宽度
        int height=300;//设置二维码高度
        String format="png";//图片格式
        String content="这里是要扫出来的内容";//内容
        HashMap hints=new HashMap();
        hints.put(EncodeHintType.CHARACTER_SET, "utf-8"); //字体格式
        hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.M);//纠错等级
        hints.put(EncodeHintType.MARGIN, 3);//边距
        try {
            BitMatrix bitmatrix=new MultiFormatWriter().encode(content, BarcodeFormat.QR_CODE, width, height,hints);
            //建立一个新的路径
            Path file=new File("指定路径").toPath();
            MatrixToImageWriter.writeToPath(bitmatrix, format, file);
        } catch (Exception e) {
            // TODO: handle exception
        }

  ps:这里需要导一个zxing3.3.0.jar包

生成二维码

原文:http://www.cnblogs.com/zdigd/p/6414153.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!