读写二维码我们使用zxing,这里直接进行介绍如何使用。
一、引入依赖
<dependency>
<groupId>com.google.zxing</groupId>
<artifactId>core</artifactId>
<version>3.5.1</version>
</dependency>
二、生成二维码
生成二维码的操作,需要提供二维码的具体内容,生成二维码的宽度、高度等信息生成相应尺寸的二维码;另外我们一般生成二维码后会直接进行写出到文件或者流,下面我们直接给出将生成的二维码写出到流的示例:
/**
* 写出二维码
* @param content 内容
* @param width 宽度
* @param height 高度
* @param outputStream 输出流
*/
public void write(String content, Integer width, Integer height, OutputStream outputStream) {
try {
Map<EncodeHintType, Object> hints = new HashMap<>();
// 设置内容编码,否则中文会乱码
hints.put(EncodeHintType.CHARACTER_SET, StandardCharsets.UTF_8);
BitMatrix bitMatrix = new QRCodeWriter().encode(content, BarcodeFormat.QR_CODE, width, height, hints);
// 写出二维码
MatrixToImageWriter.writeToStream(bitMatrix, "png", outputStream);
} catch (WriterException | IOException e) {
e.printStackTrace();
}
}
我们直接调用上面的方法写出二维码到文件中:
try(OutputStream outputStream = new FileOutputStream("/home/mointor/qrcode.png")) {
write("世界,你好", 300, 300, outputStream);
} catch (FileNotFoundException e) {
throw new RuntimeException(e);
} catch (IOException e) {
throw new RuntimeException(e);
}
执行完上述代码后就会生成相应的二维码到我们指定的目录。
三、读取二维码
读取二维码内容的操作需要将二维码图片转换成流进行读取,下面我们直接给出读取二维码的内容的示例:
/**
* 读取二维码
* @param inputStream 输入流
* @return 二维码内容
*/
public String read(InputStream inputStream) {
try {
LuminanceSource luminanceSource = new BufferedImageLuminanceSource(ImageIO.read(inputStream));
GlobalHistogramBinarizer globalHistogramBinarizer = new GlobalHistogramBinarizer(luminanceSource);
BinaryBitmap binaryBitmap = new BinaryBitmap(globalHistogramBinarizer);
Map<DecodeHintType, Object> hints = new HashMap<>();
// 设置内容编码,否则中文会乱码
hints.put(DecodeHintType.CHARACTER_SET, StandardCharsets.UTF_8);
Result result = new QRCodeReader().decode(binaryBitmap, hints);
return result.getText();
} catch (IOException | NotFoundException | ChecksumException | FormatException e) {
e.printStackTrace();
logger.error("【二维码】二维码读取失败, {}", e.getLocalizedMessage());
}
return null;
}
我们直接调用上面的方法读取二维码的内容:
try(FileInputStream inputStream = new FileInputStream("C:\\Users\\yj\\Desktop\\qrcode.png")) {
String content = QrcodeUtils.read(inputStream);
System.out.println("二维码的内容:" + content);
} catch (FileNotFoundException e) {
throw new RuntimeException(e);
} catch (IOException e) {
throw new RuntimeException(e);
}
执行完上述代码后,我们就读取到了二维码的内容: 世界,你好