java 生成二维码 代码实现

本文提供了一个使用Java和Zxing库生成QR码的具体示例。通过简单的代码配置,可以生成包含中文信息的QR码图片,并保存为指定格式。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

引入Zxing 的corn.jar 包就行了

import java.awt.image.BufferedImage;
import java.io.File;
import java.util.Hashtable;

import javax.imageio.ImageIO;

import com.google.zxing.*;
import com.google.zxing.common.BitMatrix;
/*
 * 图片生成在D盘根目录下
 * */

public class test {

     private static final int BLACK = 0xFF000000;
        private static final int WHITE = 0xFFFFFFFF;
    
        public static void main ( String[] args ) throws Exception
        {
            String text = "你好,世界。";
            String path = "D:/";
            int width = 900;
            int height = 900;
            // 二维码图片格式
            String format = "gif";
            // 设置编码,防止中文乱码
            Hashtable<EncodeHintType, Object> ht = new Hashtable<EncodeHintType, Object> ();
            ht.put (EncodeHintType.CHARACTER_SET, "UTF-8");
            // 设置二维码参数(编码内容,编码类型,图片宽度,图片高度, 编码格式)
            BitMatrix bitMatrix = new MultiFormatWriter ().encode (text, BarcodeFormat.QR_CODE, width, height, ht);
            // 生成二维码(定义二维码输出服务器路径)
            File outputFile = new File (path);
            if (!outputFile.exists ())
            {
                //创建文件夹
                outputFile.mkdir ();
            }
            int b_width = bitMatrix.getWidth ();
            int b_height = bitMatrix.getHeight ();
            // 建立图像缓冲器
            BufferedImage image = new BufferedImage (b_width, b_height, BufferedImage.TYPE_3BYTE_BGR);
            for ( int x = 0; x < b_width; x++ )
            {
                for ( int y = 0; y < b_height; y++ )
                {
                    image.setRGB (x, y, bitMatrix.get (x, y) ? BLACK : WHITE);
                }
            }
            // 生成二维码
            ImageIO.write (image, format, new File (path + "/qrcode." + format));
        }
}





评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值