千家信息网

如何基于SpringBoot生成二维码

发表于:2024-11-17 作者:千家信息网编辑
千家信息网最后更新 2024年11月17日,这篇文章给大家分享的是有关如何基于SpringBoot生成二维码的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。一、基于Google开发工具包ZXing生成二维码(1)首先,
千家信息网最后更新 2024年11月17日如何基于SpringBoot生成二维码

这篇文章给大家分享的是有关如何基于SpringBoot生成二维码的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。

一、基于Google开发工具包ZXing生成二维码

(1)首先,需要在pom.xml依赖配置文件中加入该工具包的依赖Jar,如下所示:

    com.google.zxing    core    3.3.3     com.google.zxing    javase    3.3.3

(2)然后,建立一二维码处理工具类QRCodeUtil,其核心代码如下所示:

/** * 二维码工具 * @Author:debug (SteadyJack) * @Link: weixin-> debug0868  qq-> 1948831260 * @Date: 2020/11/16 22:38 **/public class QRCodeUtil {    private static final Logger log= LoggerFactory.getLogger(QRCodeUtil.class);     //CODE_WIDTH:二维码宽度,单位像素    private static final int CODE_WIDTH = 400;    //CODE_HEIGHT:二维码高度,单位像素    private static final int CODE_HEIGHT = 400;    //FRONT_COLOR:二维码前景色,0x000000 表示黑色    private static final int FRONT_COLOR = 0x000000;    //BACKGROUND_COLOR:二维码背景色,0xFFFFFF 表示白色    //演示用 16 进制表示,和前端页面 CSS 的取色是一样的,注意前后景颜色应该对比明显,如常见的黑白    private static final int BACKGROUND_COLOR = 0xFFFFFF;     public static void createCodeToFile(String content, File codeImgFileSaveDir, String fileName) {        try {            if (StringUtils.isBlank(content) || StringUtils.isBlank(fileName)) {                return;            }            content = content.trim();            if (codeImgFileSaveDir==null || codeImgFileSaveDir.isFile()) {                //二维码图片存在目录为空,默认放在桌面...                codeImgFileSaveDir = FileSystemView.getFileSystemView().getHomeDirectory();            }            if (!codeImgFileSaveDir.exists()) {                //二维码图片存在目录不存在,开始创建...                codeImgFileSaveDir.mkdirs();            }             //核心代码-生成二维码            BufferedImage bufferedImage = getBufferedImage(content);             File codeImgFile = new File(codeImgFileSaveDir, fileName);            ImageIO.write(bufferedImage, "png", codeImgFile);             log.info("二维码图片生成成功:" + codeImgFile.getPath());        } catch (Exception e) {            e.printStackTrace();        }    }     /**     * 生成二维码并输出到输出流, 通常用于输出到网页上进行显示,输出到网页与输出到磁盘上的文件中,区别在于最后一句 ImageIO.write     * write(RenderedImage im,String formatName,File output):写到文件中     * write(RenderedImage im,String formatName,OutputStream output):输出到输出流中     * @param content  :二维码内容     * @param outputStream :输出流,比如 HttpServletResponse 的 getOutputStream     */    public static void createCodeToOutputStream(String content, OutputStream outputStream) {        try {            if (StringUtils.isBlank(content)) {                return;            }            content = content.trim();            //核心代码-生成二维码            BufferedImage bufferedImage = getBufferedImage(content);             //区别就是这一句,输出到输出流中,如果第三个参数是 File,则输出到文件中            ImageIO.write(bufferedImage, "png", outputStream);             log.info("二维码图片生成到输出流成功...");        } catch (Exception e) {            e.printStackTrace();        }    }     //核心代码-生成二维码    private static BufferedImage getBufferedImage(String content) throws WriterException {         //com.google.zxing.EncodeHintType:编码提示类型,枚举类型        Map hints = new HashMap();         //EncodeHintType.CHARACTER_SET:设置字符编码类型        hints.put(EncodeHintType.CHARACTER_SET, "UTF-8");         //EncodeHintType.ERROR_CORRECTION:设置误差校正        //ErrorCorrectionLevel:误差校正等级,L = ~7% correction、M = ~15% correction、Q = ~25% correction、H = ~30% correction        //不设置时,默认为 L 等级,等级不一样,生成的图案不同,但扫描的结果是一样的        hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.M);         //EncodeHintType.MARGIN:设置二维码边距,单位像素,值越小,二维码距离四周越近        hints.put(EncodeHintType.MARGIN, 1);                MultiFormatWriter multiFormatWriter = new MultiFormatWriter();        BitMatrix bitMatrix = multiFormatWriter.encode(content, BarcodeFormat.QR_CODE, CODE_WIDTH, CODE_HEIGHT, hints);        BufferedImage bufferedImage = new BufferedImage(CODE_WIDTH, CODE_HEIGHT, BufferedImage.TYPE_INT_BGR);        for (int x = 0; x < CODE_WIDTH; x++) {            for (int y = 0; y < CODE_HEIGHT; y++) {                bufferedImage.setRGB(x, y, bitMatrix.get(x, y) ? FRONT_COLOR : BACKGROUND_COLOR);            }        }        return bufferedImage;    }}

上述代码有点多,诸位可以在文末提供的下载地址将其下载下来,并用IDEA等开发工具将其打开,几乎每行代码debug都做了必要的注释,在这里就不赘述了!

总的来说,上面代码主要包含了两个部分,一部分是将实现如何将信息塞入二维码并将其生成图片存储至物理文件目录下;另一部分是实现如何直接将信息塞入二维码并生成图片最终以图片流的形式将其返回给前端调用端;

(3)最后,我们需要新建一个QrCodeController控制器类,并在其中创建两个请求方法,用于测试Google ZXing工具包这种方式生成两种类型的二维码是否可行,其代码如下所示:

@RequestMapping("qr/code")public class QrCodeController extends BaseController{     private static final String RootPath="E:\\shFiles\\QRCode";    private static final String FileFormat=".png";     private static final ThreadLocal LOCALDATEFORMAT=ThreadLocal.withInitial(() -> new SimpleDateFormat("yyyyMMddHHmmss"));     //生成二维码并将其存放于本地目录    @PostMapping("generate/v1")    public BaseResponse generateV1(String content){        BaseResponse response=new BaseResponse(StatusCode.Success);        try {            final String fileName=LOCALDATEFORMAT.get().format(new Date());            QRCodeUtil.createCodeToFile(content,new File(RootPath),fileName+FileFormat);        }catch (Exception e){            response=new BaseResponse(StatusCode.Fail.getCode(),e.getMessage());        }        return response;    }     //生成二维码并将其返回给前端调用者    @PostMapping("generate/v2")    public BaseResponse generateV2(String content,HttpServletResponse servletResponse){        BaseResponse response=new BaseResponse(StatusCode.Success);        try {            QRCodeUtil.createCodeToOutputStream(content,servletResponse.getOutputStream());         }catch (Exception e){            response=new BaseResponse(StatusCode.Fail.getCode(),e.getMessage());        }        return response;}}

最后是将该项目运行起来并采用Postman对该接口进行测试,首先是控制器第一个方法接口的测试,其测试结果如下图所示(生成的二维码图片是存放在 E:\\shFiles\\QRCode 中的):

最后是控制器第二个方法接口的测试,其测试结果如下图所示:

PS:如果不想存储二维码图片到实际的文件目录,则可以采用"图片流"的形式将其返回即可;反之,则可以将生成的二维码图片存储起来并返回该图片的访问链接给到前端(这个就稍微有点麻烦了,既要存储、又要赋予图片的访问域名和链接);具体取舍可以根据实际业务情况来做抉择吧!

二、基于开源的Hutool工具生成二维码

下面,debug换一种实现方式,采用目前比较知名、流行的开源工具Hutool加以实现,同样的道理需要在pom.xml中加入相应的Jar依赖,如下所示:

                     cn.hutool            hutool-all            4.6.10                                      com.google.zxing            core            3.3.3                             com.google.zxing            javase            3.3.3        

然后,需要自定义一Java Config配置文件,以Bean的形式显示配置并注入QrConfig,如下代码所示:

package com.example.qrcode.Config; import cn.hutool.extra.qrcode.QrConfig;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration; import java.awt.*; @Configurationpublic class QRCode {    @Bean    public QrConfig qrConfig(){        QrConfig qrConfig=new QrConfig();        qrConfig.setBackColor(Color.white.getRGB());        qrConfig.setForeColor(Color.black.getRGB());        return qrConfig;    }}

紧接着我们建立一QRService,用于处理真正的生成二维码的业务逻辑,其核心代码如下所示:

package com.example.qrcode.Service; import cn.hutool.extra.qrcode.QrCodeUtil;import cn.hutool.extra.qrcode.QrConfig;import com.example.qrcode.Config.QRCode;import org.springframework.stereotype.Service;import org.springframework.web.bind.annotation.RequestMapping; import javax.annotation.Resource;import javax.servlet.http.HttpServletResponse;import java.io.File;import java.io.IOException; @Servicepublic class QRService {    @Resource    QrConfig qrconig;    public void generateFile(String content, File file){        //生成到本地文件        QrCodeUtil.generate(content, qrconig, file);    }    //输出到流    public void generateStream(String content, HttpServletResponse response) throws IOException {        QrCodeUtil.generate(content,qrconig,"png",response.getOutputStream());    }}

最终,是在QRController控制器类中进行调用,如下代码所示:

package com.example.qrcode.Controller; import com.example.qrcode.Service.QRService;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.web.bind.annotation.RequestBody;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RestController; import javax.servlet.http.HttpServletResponse;import java.io.IOException; @RestControllerpublic class QRController {    @Autowired    QRService qrService;    @RequestMapping("123")    public void generateV3(String content, HttpServletResponse servletResponse) throws IOException {        qrService.generateStream(content,servletResponse);    }}

通过浏览器访问测试:

感谢各位的阅读!关于"如何基于SpringBoot生成二维码"这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!

0