java生成二维码使用QRCode和ZXing两种方式

时间:2024-10-19 08:16:15

查看原文:/article/

扩展:【Java】生成二维码(带logo)


QRCode是日本人开发的ZXing是google开发的

QRCode开发需要包 /detail/xiaokui_wingfly/7957815

ZXing开发需要包 /detail/u010457960/5301392


QRCode方式:

package ;

import ;
import .Graphics2D;
import ;
import ;
import ;
import ;
import ;

import ;

import ;
import ;
import ;

import ;

public class QRCodeUtils {
	/**
	 * 编码字符串内容到目标File对象中
	 * 
	 * @param encodeddata 编码的内容
	 * @param destFile	生成file文件  1381090722   5029067275903
	 * @throws IOException
	 */
	public static void qrCodeEncode(String encodeddata, File destFile) throws IOException {
		Qrcode qrcode = new Qrcode();
		('M');	// 纠错级别(L 7%、M 15%、Q 25%、H 30%)和版本有关
		('B');	
		(7);		// 设置Qrcode包的版本
		
		byte[] d = ("GBK");	// 字符集
		BufferedImage bi = new BufferedImage(139, 139, BufferedImage.TYPE_INT_RGB);
		// createGraphics	// 创建图层
		Graphics2D g = ();
		
		();	// 设置背景颜色(白色)
		(0, 0, 139, 139);	// 矩形 X、Y、width、height
		();	// 设置图像颜色(黑色)

		if ( > 0 &&  < 123) {
			boolean[][] b = (d);
			for (int i = 0; i < ; i++) {
				for (int j = 0; j < ; j++) {
					if (b[j][i]) {
						(j * 3 + 2, i * 3 + 2, 3, 3);
					}
				}
			}
		}
		
//		Image img = (new File("D:/"));  logo
//		(img, 25, 55,60,50, null);
				
		(); // 释放此图形的上下文以及它使用的所有系统资源。调用 dispose 之后,就不能再使用 Graphics 对象
		(); // 刷新此 Image 对象正在使用的所有可重构的资源

		(bi, "png", destFile);
		("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 = (imageFile);
		} catch (IOException e) {
			("Error: " + ());
		}

		try {
			decodedData = new String((new J2SEImage(image)), "GBK");
			("Output Decoded Data is:" + decodedData);
		} catch (DecodingFailedException dfe) {
			("Error: " + ());
		} catch (UnsupportedEncodingException e) {
			();
		}
		return decodedData;
	}

	public static void main(String[] args) {
		String FilePath = "d:/";
		File qrFile = new File(FilePath);

		// 二维码内容
		String encodeddata = "Hello X-rapido";
		try {
			(encodeddata, qrFile);
		} catch (IOException e) {
			();
		}

		// 解码
		String reText = (qrFile);
		(reText);
	}
}

class J2SEImage implements QRCodeImage {
	BufferedImage image;

	public J2SEImage(BufferedImage image) {
		 = image;
	}

	public int getWidth() {
		return ();
	}

	public int getHeight() {
		return ();
	}

	public int getPixel(int x, int y) {
		return (x, y);
	}
}
Zxing方式

package ;

import ;
import ;
import ;
import ;

import ;

import ;

/**
 * 二维码的生成需要借助MatrixToImageWriter类,该类是由Google提供的,可以将该类直接拷贝到源码中使用
 */
public class MatrixToImageWriter {
	private static final int BLACK = 0xFF000000;
	private static final int WHITE = 0xFFFFFFFF;

	private MatrixToImageWriter() {
	}

	public static BufferedImage toBufferedImage(BitMatrix matrix) {
		int width = ();
		int height = ();
		BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
		for (int x = 0; x < width; x++) {
			for (int y = 0; y < height; y++) {
				(x, y, (x, y) ? BLACK : WHITE);
			}
		}
		return image;
	}

	public static void writeToFile(BitMatrix matrix, String format, File file) throws IOException {
		BufferedImage image = toBufferedImage(matrix);
		if (!(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 (!(image, format, stream)) {
			throw new IOException("Could not write an image of format " + format);
		}
	}
}
编写main方法

package ;

import ;
import ;
import ;
import ;
import ;
import ;

public class Main {
	public static void main(String[] args) throws Exception {
		String text = "NiuYueYue I Love You!"; // 二维码内容
		int width = 300; // 二维码图片宽度
		int height = 300; // 二维码图片高度
		String format = "gif";// 二维码的图片格式
		
		Hashtable<EncodeHintType, String> hints = new Hashtable<EncodeHintType, String>();
		(EncodeHintType.CHARACTER_SET, "utf-8");	// 内容所使用字符集编码
		
		BitMatrix bitMatrix = new MultiFormatWriter().encode(text, BarcodeFormat.QR_CODE, width, height, hints);
		// 生成二维码
		File outputFile = new File("d:" +  + "");
		(bitMatrix, format, outputFile);
	}
}

两种方式都可以进行创建二维码并解析,一般项目中很少使用自己写二维码,在网站上提供了很多在线二维码生成器,其中高级设计模式中有很多功能