微信支付二码生成办法

本文介绍了如何使用Zxing库在Java中生成QR二维码。通过引入必要的pom依赖,设置编码参数,创建并编码JSON对象为字符串,最终将二维码保存为图片。详细步骤包括定义图片尺寸、设置字符集、编码数据并写入文件。

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

引入相关pom依赖

<!-- https://mvnrepository.com/artifact/com.google.zxing/core  生成二维码 -->
<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>

 

操作代码

JSONObject jsonObject = new JSONObject();
jsonObject.put("userName","alex");
String s = jsonObject.toJSONString();
System.out.println(s);

// 定义图片宽度
int width = 200;
// 定义图片高度
int height= 200;

Map<EncodeHintType,Object> hints = new HashMap<EncodeHintType, Object>();
hints.put(EncodeHintType.CHARACTER_SET,"UTF-8");
BitMatrix bitMatrix = new MultiFormatWriter().encode(s, BarcodeFormat.QR_CODE,width,height,hints);

String filePath = "D://";
String fileName = "qrCode.jpg";

// 定义路径对象
Path path = FileSystems.getDefault().getPath(filePath,fileName);
MatrixToImageWriter.writeToPath(bitMatrix,"jpg",path);

System.out.println(path);

 

转载于:https://www.cnblogs.com/leigepython/p/11444899.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值