Java生成/解析二维码-ZXing的使用

2022-10-31 15:53:21 浏览数 (1)

Java生成二维码常用的两种方式: – Google的ZXing – Denso公司的QRCode

至于两者的区别自行百度,这里介绍使用ZXing生成解析二维码

前期准备

添加ZXing依赖Jar包

代码语言:javascript复制
        <!--ZXing 二维码 -->
        <dependency>
            <groupId>com.google.zxing</groupId>
            <artifactId>core</artifactId>
            <version>3.3.0</version>
        </dependency>
        <dependency>
            <groupId>com.google.zxing</groupId>
            <artifactId>javase</artifactId>
            <version>3.3.0</version>
        </dependency>

ZXing生成二维码

代码语言:javascript复制
    /**
     * @param content  二维码内容
     * @param destPath 二维码保存的路径
     * @Author: www.itze.cn
     * @Date: 2020/10/15 14:00
     * @Email: 814565718@qq.com
     */
    public static void createQRCode(String content, File destPath) {
        //定义长宽
        int width = 300;
        int height = 300;
        //定义格式
        String format = "png";
        //定义二维码参数
        HashMap hashMap = new HashMap();
        hashMap.put(EncodeHintType.CHARACTER_SET, "utf-8");
        /**
         * 纠错能力
         * L:约可纠错7%的数据码字
         * M:约可纠错15%的数据码字
         * Q:约可纠错25%的数据码字
         * H:约可纠错30%的数据码字
         */
        hashMap.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.M);
        //边距
        hashMap.put(EncodeHintType.MARGIN, 2);
        try {
            BitMatrix matrix = new MultiFormatWriter()
                    .encode(content, BarcodeFormat.QR_CODE, width, height, hashMap);
            MatrixToImageWriter.writeToPath(matrix, format, destPath.toPath());
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

ZXing解析二维码

代码语言:javascript复制
    /**
     * @param destPath 需要解析的二维码路径
     * @Author: www.itze.cn
     * @Date: 2020/10/15 14:00
     * @Email: 814565718@qq.com
     */
    public static void readQRCode(File destPath) {
        try {
            BufferedImage read = ImageIO.read(destPath);
            BinaryBitmap binaryBitmap = new BinaryBitmap
                    (new HybridBinarizer(new BufferedImageLuminanceSource(read)));
            HashMap hashMap = new HashMap<>();
            hashMap.put(EncodeHintType.CHARACTER_SET, "utf-8");
            Result result = new MultiFormatReader().decode(binaryBitmap, hashMap);
            System.out.println("二维码格式:"   result.getBarcodeFormat());
            System.out.println("二维码内容:"   result.getText());
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

使用方法

代码语言:javascript复制
    public static void main(String[] args) {
        //生成二维码
        String content = "https://www.itze.cn";
        File file = new File("D:\123.png");
        createQRCode(content, file);
        //解析二维码
        readQRCode(file);
    }

解析结果

解析其他的二维码也是可以的,实测解析微信个人二维码也是可以的。

0 人点赞