如何用java生成二維碼?
QRCode 方式
添加依賴:
<dependency> <groupId>org</groupId> <artifactId>QRCode</artifactId> <version>3.0</version></dependency>代碼:
Qrcode x = new Qrcode();x.setQrcodeErrorCorrect('M');//糾錯等級x.setQrcodeEncodeMode('B');//N 代表數據; A 代表a-A; B 代表其他字符x.setQrcodeVersion(7);//版本 String qrData = "https://www.baidu.com/"; int width = 67 + 12 * (7 - 1);int height = 67 + 12 * (7 - 1);int pixoff = 2;//偏移量 BufferedImage bufferedImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);Graphics2D gs = bufferedImage.createGraphics();gs.setBackground(Color.WHITE);gs.setColor(Color.BLACK);gs.clearRect(0, 0, width, height); byte[] d = qrData.getBytes("utf-8");if (d.length > 0 && d.length < 120) { boolean[][] s = x.calQrcode(d); for (int i = 0; i < s.length; i++) { for (int j = 0; j < s.length; j++) { if (s[j][i]) { gs.fillRect(j * 3 + pixoff, i * 3 + pixoff, 3, 3); } } }} gs.dispose();bufferedImage.flush(); try { ImageIO.write(bufferedImage, "png", new File("F:/qrcode.png"));} catch (IOException e) { e.printStackTrace();} ///////以上步驟已經生成了二維碼,以下步驟為將二維碼文件讀取并轉換為base64位字節流的過程//// byte[] data = null;// 讀取圖片字節數組try { InputStream in = new FileInputStream("F:/qrcode.png"); data = new byte[in.available()]; in.read(data); in.close();} catch (IOException e) { e.printStackTrace();}// 對字節數組Base64編碼BASE64Encoder encoder = new BASE64Encoder();return encoder.encode(data);// 返回Base64編碼過的字節數組字符串在上一步過程中,二維碼源文件生成于 F:/qrcode.png 目錄下。
為了方便微服務使用,我將源文件轉換成base64字節流
在HTML文件中,將返回的字節流添加到<img>標簽中即可,示例如下:
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIsAAACLCAIAAAD……QAAAAASUVO RK5CYII="/>
其中:“iVBORw0KGgoAAAANSUhEUgAAAIsAAACLCAIAAAD……QAAAAASUVO RK5CYII=”即為以上服務中返回的base64字節流
zxing方法zxing是谷歌提供的一個生成而二維碼的庫,這里使用maven,所以先添加要使用的jar包的坐標。
<dependency> <groupId>com.google.zxing</groupId> <artifactId>core</artifactId> <version>3.2.1</version></dependency><dependency> <groupId>com.google.zxing</groupId> <artifactId>javase</artifactId> <version>3.0.0</version></dependency>生成二維碼的基本代碼還是比較簡單的。// 定義要生成二維碼的基本參數int width = 300;int height = 300;String type = "png";String content = "www.baidu.com";// 定義二維碼的配置,使用HashMapHashMap hints = new HashMap();// 字符集,內容使用的編碼hints.put(EncodeHintType.CHARACTER_SET, "UTF-8");// 容錯等級,H、L、M、Qhints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.M);// 邊距,二維碼距離邊的空白寬度hints.put(EncodeHintType.MARGIN, 2);try { // 生成二維碼對象,傳入參數:內容、碼的類型、寬高、配置 BitMatrix bitMatrix = new MultiFormatWriter().encode(content, BarcodeFormat.QR_CODE, width, height, hints); // 定義一個路徑對象 Path file = new File("D:/learn/code.png").toPath(); // 生成二維碼,傳入二維碼對象、生成圖片的格式、生成的路徑 MatrixToImageWriter.writeToPath(bitMatrix, type, file);} catch (WriterException e) { e.printStackTrace();} catch (IOException e) { e.printStackTrace();}注意一點,因為上面的內容我們設置的是。掃碼結果是這個字符串文本。如果想要掃碼之后直接跳轉到該鏈接,需要在網址前面加上協議。
既然有生成的方法,就有對應的解析二維碼的方法。解析二維碼就有些繁瑣了。
try { // 聲明一個解析二維碼的對象 MultiFormatReader formatReader = new MultiFormatReader(); // 生成一個文件對象,傳入剛才生成二維碼的路徑 File file = new File("D:/learn/code.png"); // 把文件對象轉成一個圖片對象 BufferedImage image = ImageIO.read(file); // 最后需要的是一個binaryBitmap對象。 BinaryBitmap binaryBitmap = new BinaryBitmap(new HybridBinarizer(new BufferedImageLuminanceSource(image))); // 配置,解析時傳入 HashMap hints = new HashMap(); hints.put(EncodeHintType.CHARACTER_SET, "utf-8"); // 解析得到一個Result對象,該對象包含二維碼的信息 Result result = formatReader.decode(binaryBitmap, hints); // 分別輸出二維碼類型和內容的方法 System.out.println(result.getBarcodeFormat()); System.out.println(result.getText());} catch (IOException e) { e.printStackTrace();} catch (NotFoundException e) { e.printStackTrace();}