1. 首页
  2. 课程学习
  3. Java
  4. 二维码zxing3.3.3.jar包

二维码zxing3.3.3.jar包

上传者: 2018-12-08 00:39:19上传 JAR文件 577.49KB 热度 45次
public static void main(String[] args) { //定义图片高度和宽度 int width = 300; int height =300; //定义图片格式 String format = "png"; //定义连接地址 String contents = "http://www.jd.com"; //定义二维码的参数 HashMap hints = new HashMap(); hints.put(EncodeHintType.CHARACTER_SET, "utf-8");//设置字符集 hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.M);//设置纠错等级 hints.put(EncodeHintType.MARGIN, 2);//设置边距 //生成二维码 try { BitMatrix bitMatrix = new MultiFormatWriter().encode(contents, BarcodeFormat.QR_CODE, width , height); Path file = new File("D:/code/img.png").toPath(); MatrixToImageWriter.writeToPath(bitMatrix, format, file); } catch (Exception e) { e.printStackTrace(); } }
用户评论