用java做一個簡單的二維碼

JackSparrowlj發表於2017-06-14

1,首先需要 QRCode.jar 包

2,寫一個測試類

package com.lj.test;

import java.awt.Color;
import java.awt.Graphics2D;
import java.awt.image.BufferedImage;
import java.io.File;

import javax.imageio.ImageIO;

import com.swetake.util.Qrcode;

public class Test2 {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		String imgPath = "e://luojie/1.png";
		String content = "你好啊";
		Test2 handler = new Test2();
		handler.encoderQRCode(content, imgPath);
		System.out.println("encoder QRcode success");
	}

	public void encoderQRCode(String content, String imgPath) {
		try {
			Qrcode qrcodeHandler = new Qrcode();
			qrcodeHandler.setQrcodeErrorCorrect('M');
			qrcodeHandler.setQrcodeEncodeMode('B');
			qrcodeHandler.setQrcodeVersion(7);
			System.out.println(content);
			byte[] contentBytes = content.getBytes("utf-8");
			BufferedImage bufImg = new BufferedImage(140, 140,
					BufferedImage.TYPE_INT_RGB);
			Graphics2D gs = bufImg.createGraphics();
			gs.setBackground(Color.WHITE);
			gs.clearRect(0, 0, 140, 140);
			// 設定影象顏色> BLACK
			gs.setColor(Color.BLACK);
			// 設定偏移量 不設定可能導致解析出錯
			int pixoff = 2;
			// 輸出內容> 二維碼

			if (contentBytes.length > 0 && contentBytes.length < 120) {
				boolean[][] codeOut = qrcodeHandler.calQrcode(contentBytes);
				for (int i = 0; i < codeOut.length; i++) {
					for (int j = 0; j < codeOut.length; j++) {
						if (codeOut[j][i]) {
							gs.fillRect(j * 3 + pixoff, i * 3 + pixoff, 3, 3);
						}
					}
				}
			} else {
				System.err.println("QRCode content bytes length = "
						+ contentBytes.length + " not in [ 0,120 ]. ");

			}
			gs.dispose();
			bufImg.flush();
			File imgFile = new File(imgPath);
			// 生成二維碼QRCode圖片
			ImageIO.write(bufImg, "png", imgFile);
		} catch (Exception e) {
			e.printStackTrace();
		}

	}
}


3,執行這個類,二維碼就會出現在你指定的檔案目錄下了

相關文章