以前就寫過不少關於二維碼的東西,一直沒有時間整理一下,因此呢今天就先來介紹一下如何利用java開發二維碼。生成二維碼有不少jar包能夠實現,例如Zxing,QRcode,前者是谷歌的,後者日本的,這裏我將對這兩種方式的具體實現方法作簡單介紹。html
1、二維碼的原理java
二維條形碼最先發明於日本,它是用某種特定的幾何圖形按必定規律在平面(二維方向上)分佈的黑白相間的圖形記錄數據符號信息的,在代碼編制上巧妙地利用構成計算機內部邏輯基礎的「0」、「1」比特流的概念,使用若干個與二進制相對應的幾何形體來表示文字數值信息,經過圖象輸入設備或光電掃描設備自動識讀以實現信息自動處理。數組
2、具體實現google
1.QRcode編碼
(1).獲取QRcode.jar, 下載連接:http://www.swetake.com/qrcode/java/qr_java.html (官網) http://download.csdn.net/download/xch_yang/9514836
spa
(2).將jar包添加進項目的構建路徑(將jar包複製到項目下,右鍵:構建路徑--添加至構建路徑)。.net
代碼以下:3d
import java.awt.Color; import java.awt.Graphics2D; import java.awt.image.BufferedImage; import java.io.File; import java.io.IOException; import java.io.UnsupportedEncodingException; import javax.imageio.ImageIO; import com.swetake.util.Qrcode; public class QrcodeImg { /** * 生成二維碼圖片 * @author 楊雄超 * @param content 二維碼內容 * @param imgPath 二維碼圖片的保存路徑 */
public static void getQrcodeImg(String content,String imgPath){ int width=140; int height=140; //實例化Qrcode
Qrcode qrcode=new Qrcode(); //設置二維碼的排錯率L(7%) M(15%) Q(25%) H(35%)
qrcode.setQrcodeErrorCorrect('M'); qrcode.setQrcodeEncodeMode('B'); //設置二維碼尺寸(1~49)
qrcode.setQrcodeVersion(7); //設置圖片尺寸
BufferedImage bufImg=new BufferedImage(width, height, BufferedImage.TYPE_INT_BGR); //繪製二維碼圖片
Graphics2D gs=bufImg.createGraphics(); //設置二維碼背景顏色
gs.setBackground(Color.WHITE); //建立一個矩形區域
gs.clearRect(0, 0, width, height); //設置二維碼的圖片顏色值 黑色
gs.setColor(Color.BLACK); //獲取內容的字節數組,設置編碼集
try { byte[] contentBytes=content.getBytes("utf-8"); int pixoff=2; //輸出二維碼
if(contentBytes.length>0&&contentBytes.length<120){ boolean[][] codeOut=qrcode.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); } } } } gs.dispose(); bufImg.flush(); //生成二維碼圖片
File imgFile=new File(imgPath); ImageIO.write(bufImg, "png", imgFile); System.out.println("二維碼生成成功!"); } catch (UnsupportedEncodingException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } } public static void main(String[] args) { getQrcodeImg("http://m.55bbs.com/liren_2003609/", "E:\\test.png"); } }
結果:內容爲網頁圖片的連接,因此掃描以後結果如圖,固然,你能夠將內容換成文字。code
2.ZXingorm
(1).獲取ZXing包, 下載連接:http://download.csdn.net/detail/xch_yang/9514956
(2)這裏咱們只須要Zxing包中的core-3.0.0.jar,因此將core-3.0.0.jar添加至構建路徑。
實現代碼:
建立類:ImageWrite(二維碼的生成須要藉助這個類)
import javax.imageio.ImageIO; import java.io.File; import java.io.OutputStream; import java.io.IOException; import java.awt.image.BufferedImage; public final class ImageWrite { private static final int BLACK = 0xFF000000; private static final int WHITE = 0xFFFFFFFF; private ImageWrite() {} public static BufferedImage toBufferedImage(BitMatrix matrix) { int width = matrix.getWidth(); int height = matrix.getHeight(); BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB); for (int x = 0; x < width; x++) { for (int y = 0; y < height; y++) { image.setRGB(x, y, matrix.get(x, y) ? BLACK : WHITE); } } return image; } public static void writeToFile(BitMatrix matrix, String format, File file) throws IOException { BufferedImage image = toBufferedImage(matrix); if (!ImageIO.write(image, format, file)) { throw new IOException("Could not write an image of format " + format + " to " + file); } } public static void writeToStream(BitMatrix matrix, String format, OutputStream stream)throws IOException { BufferedImage image = toBufferedImage(matrix); if (!ImageIO.write(image, format, stream)) { throw new IOException("Could not write an image of format " + format); } } }
建立類:QRcodeEncode
import java.io.File; import java.io.IOException; import java.util.HashMap; import java.util.Map; import com.google.zxing.BarcodeFormat; import com.google.zxing.EncodeHintType; import com.google.zxing.MultiFormatWriter; import com.google.zxing.WriterException; import com.google.zxing.common.BitMatrix; public class QRcodeEncode { public static void main(String[] args) { try { //二維碼內容
String content = "Hello QRcode!"; //二維碼生成路徑
String path = "F:/java workspace"; MultiFormatWriter multiFormatWriter = new MultiFormatWriter(); Map hints = new HashMap(); hints.put(EncodeHintType.CHARACTER_SET, "UTF-8"); BitMatrix bitMatrix = multiFormatWriter.encode(content, BarcodeFormat.QR_CODE, 400, 400,hints); File file1 = new File(path,"test.jpg"); ImageWrite.writeToFile(bitMatrix, "jpg", file1); System.out.println("二維碼已生成!"); } catch (IOException e) { e.printStackTrace(); } catch (WriterException e) { e.printStackTrace(); } } }
結果:二維碼圖片所在位置:F:/java workspace/test.jpg 掃描內容:Hello QRcode!
這裏簡單的介紹了利用java開發二維碼的兩種方式,固然還能夠向二維碼中添加logo,實現方式後續介紹。
兩個jar包可關注我公衆號ChaoYoung,回覆「jar包」直接獲取。
轉載請註明:http://www.cnblogs.com/xch-yang/p/5475869.html
更多技術乾貨,歡迎關注個人公衆號:ChaoYoung