Java 生成简单二维码(一)

提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档


前言

产品说需要生成二维码,用来存储信息,通过扫码可以获取,那就用后端实现一下试试看。

一、二维码是什么?

二维条码/二维码(2-dimensional bar code)是用某种特定的几何图形按一定规律在平面(二维方向上)分布的、黑白相间的、记录数据符号信息的图形;在代码编制上巧妙地利用构成计算机内部逻辑基础的“0”、“1”比特流的概念,使用若干个与二进制相对应的几何形体来表示文字数值信息,通过图象输入设备或光电扫描设备自动识读以实现信息自动处理:它具有条码技术的一些共性:每种码制有其特定的字符集;每个字符占有一定的宽度;具有一定的校验功能等。同时还具有对不同行的信息自动识别功能、及处理图形旋转变化点。

二、使用步骤

1.引入坐标

代码如下:

<!--生成二维码-->
<dependency>
    <groupId>com.google.zxing</groupId>
    <artifactId>javase</artifactId>
    <version>3.3.0</version>
</dependency>

2.编写生成二维码类

代码如下:

package com.example.demo.utils;

import com.google.zxing.BarcodeFormat;
import com.google.zxing.WriterException;
import com.google.zxing.client.j2se.MatrixToImageWriter;
import com.google.zxing.common.BitMatrix;
import com.google.zxing.qrcode.QRCodeWriter;

import java.io.IOException;
import java.nio.file.FileSystems;
import java.nio.file.Path;

import static java.nio.file.FileSystems.*;

public class QRCodeGenerator {

    /*
    * text - the text to content in the QR code
    * width - the width of the QR code
    * height - the height of the QR code
    * filePath - the path of the QR code image
    */
    public static void generateQRCodeImage(String text, int width, int height, String filePath)throws WriterException, IOException {
        QRCodeWriter qrCodeWriter = new QRCodeWriter();
        BitMatrix bitMatrix = qrCodeWriter.encode(text, BarcodeFormat.QR_CODE, width, height);
        Path path = FileSystems.getDefault().getPath(filePath);
        MatrixToImageWriter.writeToPath(bitMatrix, "PNG", path);
    }

    /*
    * 测试方法
    * */
    public static void main(String[] args) {
        try {
            generateQRCodeImage("Hello World", 350, 350, "C:/code_workspace/QRTest.png");
        } catch (WriterException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

2.测试结果

图片省略……


总结

以上就是今天要讲的内容,本文仅仅简单介绍了应用maven坐标的使用,而生成的二维码很好用。

Java生成圆形二维码的步骤如下: 1. 首先,你需要导入相关的库文件。你可以使用zxing库来生成二维码。在项目的`pom.xml`文件中添加以下依赖项: ``` <dependency> <groupId>com.google.zxing</groupId> <artifactId>core</artifactId> <version>3.4.1</version> </dependency> <dependency> <groupId>com.google.zxing</groupId> <artifactId>javase</artifactId> <version>3.4.1</version> </dependency> ``` 2. 创建一个Java类,用于生成圆形二维码。你可以使用以下代码示例: ```java import com.google.zxing.BarcodeFormat; import com.google.zxing.common.BitMatrix; import com.google.zxing.qrcode.QRCodeWriter; import javax.imageio.ImageIO; import java.awt.*; import java.awt.geom.Ellipse2D; import java.awt.image.BufferedImage; import java.io.File; import java.io.IOException; public class CircleQRCodeGenerator { public static void main(String[] args) { int size = 300; // 二维码尺寸 String content = "Your Content"; // 二维码内容 try { // 创建QRCodeWriter对象 QRCodeWriter qrCodeWriter = new QRCodeWriter(); // 生成二维码的BitMatrix对象 BitMatrix bitMatrix = qrCodeWriter.encode(content, BarcodeFormat.QR_CODE, size, size); // 创建一个BufferedImage对象,并设置其维度和类型 BufferedImage bufferedImage = new BufferedImage(size, size, BufferedImage.TYPE_INT_ARGB); Graphics2D graphics = (Graphics2D) bufferedImage.getGraphics(); // 将二维码绘制到BufferedImage对象上 graphics.setColor(Color.WHITE); graphics.fillRect(0, 0, size, size); graphics.setColor(Color.BLACK); for (int i = 0; i < size; i++) { for (int j = 0; #### 引用[.reference_title] - *1* [基于Java Web的智能二维码门禁管理系统(本科毕业论文+毕业设计)](https://download.csdn.net/download/qq_35831906/88227131)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 100%"] [ .reference_list ]
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值