当前位置:   article > 正文

使用ZXing生成QRcode二维码_zxing create qrcode

zxing create qrcode

生成二维码的方法很多,但是我感觉还是Google的ZXing生成比较简单的。

1.首先先下载google的包ZXing3.2.1.jar   ,把包导入到项目中。

2.开始代码

2.1.生成二维码:

  1. /**
  2. * 生成
  3. */
  4. @Test
  5. public void createQRBarcode(){
  6. int width = 300;
  7. int heigth = 300;
  8. String format = "png";//生成的格式
  9. String content = "http://blog.csdn.net/chentao866";//二维码内容
  10. //定义二维码参数
  11. HashMap hints = new HashMap();
  12. hints.put(EncodeHintType.CHARACTER_SET,"utf-8");//设置编码格式
  13. hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.M);//设置纠错等级
  14. hints.put(EncodeHintType.MARGIN,3);//设置边距
  15. try {
  16. BitMatrix matrix = new MultiFormatWriter().encode(content, BarcodeFormat.QR_CODE,width,heigth,hints);
  17. Path file = new File
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/715829
推荐阅读
相关标签
  

闽ICP备14008679号