首先 我们要引入依赖
pom.xml中插入
<dependency>
<groupId>com.google.zxing</groupId>
<artifactId>core</artifactId>
<version>3.4.1</version>
</dependency>
<dependency>
<groupId>com.google.zxing</groupId>
<artifactId>javase</artifactId>
<version>3.4.1</version>
</dependency>
然后 直接在接口类中写入函数
@GetMapping(value = "/qrcode/{text}")
public void generateQRCode(@PathVariable("text") String text, HttpServletResponse response) throws IOException, WriterException {
response.setContentType(MediaType.IMAGE_PNG_VALUE);
OutputStream outputStream = response.getOutputStream();
Map<EncodeHintType, Object> hints = new HashMap<>();
hints.put(EncodeHintType.CHARACTER_SET, "UTF-8");
BitMatrix bitMatrix = new MultiFormatWriter().encode(text, BarcodeFormat.QR_CODE, 200, 200, hints);
MatrixToImageWriter.writeToStream(bitMatrix, "PNG", outputStream);
outputStream.flush();
outputStream.close();
}
然后 直接访问 端口+前缀配置/qrcode/要生成的二维码文本内容
例如 这里我访问
http://localhost/books/qrcode/1992
然后 接口就会返回一个二维码 给我们 这里 因为CSDN平台不支持 禁止二维码图片 我就用画笔破获一下 免得被和谐了
然后用手机扫描二维码
就可以带出我们文本的内容