首先需要两个jar :QRCode.jar,Qrcodeen.jar 接下来就是具体实现了
下载地址 http://pan.baidu.com/s/1o82VdTS
package com.utils; 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; import jp.sourceforge.qrcode.QRCodeDecoder; import jp.sourceforge.qrcode.data.QRCodeImage; import jp.sourceforge.qrcode.exception.DecodingFailedException;
public class QRCodeUtils {
/**
* 编码字符串内容到目标File对象中
* @param encodeddata
* @param destFile
* @throws IOException
*/
public static void qrCodeEncode(String encodeddata,File destFile) throws IOException{ Qrcode qrcode = new Qrcode(); //错误修正容量 //L水平 7%的字码可被修正 //M水平 15%的字码可被修正 //Q水平 25%的字码可被修正 //H水平 30%的字码可被修正 //QR码有容错能力,QR码图形如果有破损,仍然可以被机器读取内容,最高可以到7%~30%面积破损仍可被读取。 //相对而言,容错率愈高,QR码图形面积愈大。所以一般折衷使用15%容错能力。 qrcode.setQrcodeErrorCorrect('M'); qrcode.setQrcodeEncodeMode('B'); //设置二维码大小,这个跟你二维码的内容大小又关系,内容太大就不能识别出来了,7是40个中文字符(编码为utf-8的情况下,编码不一样,容纳的内容长度也有变化,gbk为61) qrcode.setQrcodeVersion(7); //设置二位码编码 byte[] d = encodeddata.getBytes("utf-8"); //设置图片大小 BufferedImage bi = new BufferedImage(139, 139, BufferedImage.TYPE_INT_RGB); Graphics2D g = bi.createGraphics(); // 设置图片背景色 g.setBackground(Color.WHITE); g.clearRect(0, 0, 139, 139); //设置二维码图片颜色 g.setColor(Color.BLACK); if (d.length > 0 && d.length < 123) { boolean[][] b = qrcode.calQrcode(d); for (int i = 0; i < b.length; i++) { for (int j = 0; j < b.length; j++) { if (b[j][i]) { g.fillRect(j * 3 + 2, i * 3 + 2, 3, 3); } } } } g.dispose(); bi.flush(); ImageIO.write(bi, "png", destFile); System.out.println("Input Encoded data is:"+encodeddata); }
/**
* 解析二维码,返回解析内容
* @param imageFile
* @return
*/
public static String qrCodeDecode(File imageFile) { String decodedData = null; QRCodeDecoder decoder = new QRCodeDecoder(); BufferedImage image = null; try { image = ImageIO.read(imageFile); } catch (IOException e) { System.out.println("Error: " + e.getMessage()); } try { decodedData = new String(decoder.decode(new J2SEImage(image)), "utf-8"); System.out.println("Output Decoded Data is:"+decodedData); } catch (DecodingFailedException dfe) { System.out.println("Error: " + dfe.getMessage()); } catch (UnsupportedEncodingException e) { e.printStackTrace(); } return decodedData; }
public static void main(String[] args) { String FilePath = "D:\\erweima\\QRCode.png"; File qrFile = new File(FilePath); System.out.println(qrFile.exists()); if(qrFile.exists()){ qrFile.delete(); } //编码 String encodeddata = "阿三发射点阿三发射点阿三发射点阿三发射点阿三发射点阿三发射点阿三阿斯蒂芬阿斯顿阿"; System.out.println(encodeddata.length()); try { QRCodeUtils.qrCodeEncode(encodeddata, qrFile); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); }; //解码 String reText = QRCodeUtils.qrCodeDecode(qrFile); System.out.println(reText); } }
class J2SEImage implements QRCodeImage { BufferedImage image; public J2SEImage(BufferedImage image) { this.image = image; } public int getWidth() { return image.getWidth(); } public int getHeight() { return image.getHeight(); } public int getPixel(int x, int y) { return image.getRGB(x, y); } }