本文介绍用的的Java的代码生成二维码图片保存在本地(实际项目中当然是保存在远程服务器,CDN,fastdfs等),用户可以扫描二维码实现跳转到指定链接!
1.利用Google的ZXing工具包,生成和解析二维码图片,如果是maven项目则引入pom.xml中的依赖为
com.google.zxing
core
3.3.0
commons-io
commons-io
2.4
2.根据内容,生成指定宽高,指定格式的二维码图片,这一步已经可以生成二维码图片了,可以扫面跳转到制定链接了
/**
* 根据内容,生成指定宽高、指定格式的二维码图片
*
* @param text 内容
* @param width 宽
* @param height 高
* @param format 图片格式
* @return 生成的二维码图片路径
* @throws Exception
*/
public static String generateQRCode(String text, int width, int height, String format) throws Exception {
Hashtable hints = new Hashtable<>();
hints.put(EncodeHintType.CHARACTER_SET, "utf-8");
BitMatrix bitMatrix = new MultiFormatWriter().encode(text, BarcodeFormat.QR_CODE, width, height, hints);
String pathName = "D:/qrCode/QrCodeDemo.jpg";
File outputFile = new File(pathName);
if (!outputFile.exists()) {
outputFile.mkdirs();
}
MatrixToImageWriter.writeToFile(bitMatrix, format, outputFile);
return pathName;
}
3.此方法为古尔提供,用于生成二维码
import com.google.zxing.common.BitMatrix;
import javax.imageio.ImageIO;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import java.io.OutputStream;
/**
* 用于二维码的生成,由Google提供。
*
* Created by dengxincheng on 2017/10/20.
*/
public final class MatrixToImageWriter {
private static final int BLACK = 0xFF000000;
private static final int WHITE = 0xFFFFFFFF;
private MatrixToImageWriter() {}
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);
}
}
}
3.解析指定路径下的二维码图片内容
/**
* 解析指定路径下的二维码图片
* @param filePath 二维码图片路径
* @return
*/
private static String parseQRCode(String filePath) {
String content = "";
try {
File file = new File(filePath);
BufferedImage image = ImageIO.read(file);
LuminanceSource source = new BufferedImageLuminanceSource(image);
Binarizer binarizer = new HybridBinarizer(source);
BinaryBitmap binaryBitmap = new BinaryBitmap(binarizer);
Map hints = new HashMap<>();
hints.put(DecodeHintType.CHARACTER_SET, "UTF-8");
MultiFormatReader formatReader = new MultiFormatReader();
Result result = formatReader.decode(binaryBitmap, hints);
System.out.println("result 为:" + result.toString());
System.out.println("resultFormat 为:" + result.getBarcodeFormat());
System.out.println("resultText 为:" + result.getText());
//设置返回值
content = result.getText();
} catch (Exception e) {
e.printStackTrace();
}
return content;
}
测试代码:
public static void main(String[] args) {
String text = "https://www.csdn.net/";
System.out.println("二维码的内容为: " + text);
int width = 300; //二维码图片的宽
int height = 300; //二维码图片的高
String format = "jpg"; //二维码图片的格式
try {
//生成二维码图片,并返回图片路径
String pathName = generateQRCode(text, width, height, format);
System.out.println("生成二维码的图片路径: " + pathName);
String content = parseQRCode(pathName);
System.out.println("解析出二维码的图片的内容为: " + content);
} catch (Exception e) {
e.printStackTrace();
}
}
是不是顿时觉得自己可以做一个在线生成二维码网站这只是一个方法,根据具体业务需求做变动,后续会写一篇上传和下载文件的;再比如这个链接常常跟参数但又不想让用户看见,是不是可以生成短链接?再和这个联系在一起是不是又能碰出火花了,项目就是很多小方法组成的,我们得灵活嵌套这些方法才有趣嘛!我写的都是我在项目中用过或者遇到过的,所以想分享出来和大家一起探讨。
完整代码:https://download.csdn.net/download/qq_28953809/10604926