試用下Android手機的二維碼掃描軟件,掃描了下火車票、名片等等,覺得非常不錯很有意思的。當然Java也可以實現這些,現在就分享下如何簡單用Java實現二維碼中QRCode的編碼和解碼(可以手機掃描驗證)。
涉及到的一些主要類庫,方便大家下載:
編碼 lib:Qrcode_swetake.jar (官網介紹 -- http://www.swetake.com/qr/index-e.html)
解碼 lib:qrcode.jar (官網介紹 -- http://sourceforge.jp/projects/qrcode/)
免費下載地址在 http://linux.linuxidc.com/
用戶名與密碼都是www.linuxidc.com
具體下載目錄在 /2012年資料/8月/16日/Java實現二維碼QRCode的編碼和解碼
後來發現一個更好的條形碼和二維碼的開源軟件(ZXing),詳細介紹見:http://www.linuxidc.com/Linux/2012-08/68359.htm
【一】、編碼:
QRCodeEncoderHandler.java
添加如下代碼:
- package michael.qrcode;
-
- 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;
-
- /**
- * 二維碼生成器
- * @blog http://www.linuxidc.com
- * @author Michael
- */
- public class QRCodeEncoderHandler {
-
- /**
- * 生成二維碼(QRCode)圖片
- * @param content
- * @param imgPath
- */
- 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("gb2312");
-
- 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();
- }
-
- }
-
- /**
- * @param args the command line arguments
- */
- public static void main(String[] args) {
- String imgPath = "D:/test/twocode/Michael_QRCode.png";
-
- String content = "Hello 大大、小小,welcome to QRCode!"
- + "\nMyblog [ http://www.linuxidc.com ]"
- + "\nEMail [ [email protected] ]" + "\nTwitter [ @suncto ]";
-
- QRCodeEncoderHandler handler = new QRCodeEncoderHandler();
- handler.encoderQRCode(content, imgPath);
-
- System.out.println("encoder QRcode success");
- }
- }
運行後生成的二維碼圖片如下:
此時就可用手機的二維碼掃描軟件(本人用的:android 快拍二維碼 )來測試下,識別成功的截圖如下:
喜歡的朋友可以下載後試一試,做一些名片或者自己喜歡的東西。當然Java也可以對二維碼圖片解碼,具體看下面關於解碼的內容。