Java微信支付对帐,微信账单下载并读取到实体Bean,并保存至数据库

2023-12-22 14:59

本文主要是介绍Java微信支付对帐,微信账单下载并读取到实体Bean,并保存至数据库,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

最近公司的项目需要微信对帐功能,这里展示了简单的微信账单下载并读取到数据库方法,有问题或者更好的想法的可以在评论区交流哟。

一、依赖

<!-- 微信支付 -->
<dependency><groupId>com.github.wechatpay-apiv3</groupId><artifactId>wechatpay-java</artifactId><version>0.2.12</version>
</dependency><!-- csv处理 -->
<dependency><groupId>com.opencsv</groupId><artifactId>opencsv</artifactId><version>5.9</version>
</dependency>

二、参考链接

https://pay.weixin.qq.com/docs/merchant/products/bill-download/development.html

https://opencsv.sourceforge.net/

三、详解

  1. 下载微信账单
    public boolean downloadTradeBill(String time, String filePath) {// time = "2023-11-16"; 事例// 获取交易账单RSAAutoCertificateConfig config = this.configManager.getConfig("payOrder");BillDownloadServiceExtension service = new BillDownloadServiceExtension.Builder().config(config).build();GetTradeBillRequest request = new GetTradeBillRequest();request.setBillDate(time);request.setBillType(BillType.ALL);request.setTarType(TarType.GZIP);DigestBillEntity bill = service.getTradeBill(request);try (InputStream inputStream = bill.getInputStream()) {// 使用有缓存的 BufferedOutputStreamtry (BufferedOutputStream outputStream = new BufferedOutputStream(new FileOutputStream(filePath))) {// 处理大文件时,常用的缓冲区大小为 8192 或 16384。// 不过,最佳缓冲区大小可能取决于具体的硬件和系统配置。byte[] buffer = new byte[16384];int bytesRead;while ((bytesRead = inputStream.read(buffer)) != -1) {outputStream.write(buffer, 0, bytesRead);}}} catch (IOException e) {throw new RuntimeException(e);}// 验证数据流中已读取数据的摘要if (bill.verifyHash()) {// 账单是完整准确,可以开启后续操作,例如完成每日对账。log.info("微信账单下载验证成功!");return true;} else {// 账单不完整或者被篡改,应清理之前保存的文件try {Path path = Paths.get(filePath);Files.delete(path);} catch (IOException e) {log.error(e.toString());}return false;}}

注意:RSAAutoCertificateConfig config = this.configManager.getConfig(“payOrder”);

请根据自身项目按照实际获取微信支付的RSAAutoCertificateConfig 。

注意:下载的文件格式为UTF-8 BOM 这里有坑,请一定小心

  1. 过滤微信账单的无用部分(完整详细账单格式请见:https://pay.weixin.qq.com/docs/merchant/products/bill-download/format-trade.html)
    在这里插入图片描述
	// 微信账单去除最后无用部分(最后两行汇总信息)private void removeUselessParts(String inputFilePath, String outputFilePath) {try (BufferedReader reader = new BufferedReader(new FileReader(inputFilePath, StandardCharsets.UTF_8));FileWriter writer = new FileWriter(outputFilePath, StandardCharsets.UTF_8)) {String line = null, line1 = null, line2 = null, line3 = null;int count = 0;while ((line = reader.readLine()) != null) {line3 = line2;line2 = line1;line1 = line;if (count < 2) {count++;} else {writer.write(line3 + "\n");}}} catch (IOException e) {logger.error(e.toString());}}
  1. 读取微信账单

微信支付账单实体Bean(可以按需获取,本例只引用了部分)

public class Bill extends BaseEntity {// 交易时间@CsvBindByPosition(position = 0, capture = "`(.*)")@CsvDate("yyyy-MM-dd HH:mm:ss")private Date tradingHours;// 微信订单号@CsvBindByPosition(position = 5, capture = "`(.*)")private String weChatOrderNumber;// 商户订单号@CsvBindByPosition(position = 6, capture = "`(.*)")private String merchantOrderNumber;// 交易状态@CsvBindByPosition(position = 9, capture = "`(.*)")private String transactionStatus;// 应结订单金额@CsvBindByPosition(position = 12, capture = "`(.*)")private String payableOrderAmount;// 微信退款单号@CsvBindByPosition(position = 14, capture = "`(.*)")private String weChatRefundNumber;// 商户退款单号@CsvBindByPosition(position = 15, capture = "`(.*)")private String merchantRefundNumber;// 退款金额@CsvBindByPosition(position = 16, capture = "`(.*)")private BigDecimal refundAmount;// 订单金额@CsvBindByPosition(position = 24, capture = "`(.*)")private BigDecimal amount;// 申请退款金额@CsvBindByPosition(position = 25, capture = "`(.*)")private BigDecimal requestRefundAmount;
}

读取微信账单csv文件

	public void readAndSaveWeChatTradeBill(String filePath) {InputStreamReader reader = null;try {reader = new InputStreamReader(new FileInputStream(filePath), StandardCharsets.UTF_8);CsvToBean<WeChatTradeBill> csvToBean = new CsvToBeanBuilder<WeChatTradeBill>(reader).withType(WeChatTradeBill.class).withSkipLines(1).build();// 使用迭代器读取并分步保存int count = 0;List<WeChatTradeBill> list = new ArrayList<>();for (WeChatTradeBill next : csvToBean) {count++;if (count % 100 == 0) {weChatTradeBillDao.saveAll(list);list = new ArrayList<>();} else {list.add(next);}}if (!CollectionUtils.isEmpty(list)) {weChatTradeBillDao.saveAll(list);}} catch (FileNotFoundException e) {throw new RuntimeException(e);} finally {try {assert reader != null;reader.close();} catch (IOException e) {logger.error(e.toString());}}}

四、完整参考

public void autoImportWeChatTradeBill(String date) {String time;if (date == null) {LocalDate threeDayAgo = LocalDate.now().minusDays(3L);time = threeDayAgo.format(DateTimeFormatter.ISO_LOCAL_DATE);} else {time = LocalDate.parse(date, DateTimeFormatter.ISO_DATE).format(DateTimeFormatter.ISO_DATE);}String downloadFilePath = System.getProperty("user.dir") + "\\" + time + "-wechat.csv";String updateFilePath = System.getProperty("user.dir") + "\\" + time + "-wechat-update.csv";// 尝试下载账单文件,并且去除最后无用部分int count = 0;while (count < 10) {count++;boolean b = wechatUtils.downloadTradeBill(time, downloadFilePath);if (b) {break;} else if (count >= 10) {logger.error("多次尝试,账单仍下载失败!!!");}}this.removeUselessParts(downloadFilePath, updateFilePath);// 解决this自调用事务失效问题WeChatTradeBillServiceImpl bean = applicationContext.getBean(WeChatTradeBillServiceImpl.class);bean.readAndSaveWeChatTradeBill(updateFilePath);// 删除之前下载的账单文件。removeOldDownloadFile(downloadFilePath);removeOldDownloadFile(updateFilePath);}// 删除下载的微信账单文件
private void removeOldDownloadFile(String filePath) {try {Path path = Paths.get(filePath);Files.delete(path);} catch (IOException e) {logger.error(e.toString());}
}

这篇关于Java微信支付对帐,微信账单下载并读取到实体Bean,并保存至数据库的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/524402

相关文章

springboot集成easypoi导出word换行处理过程

《springboot集成easypoi导出word换行处理过程》SpringBoot集成Easypoi导出Word时,换行符n失效显示为空格,解决方法包括生成段落或替换模板中n为回车,同时需确... 目录项目场景问题描述解决方案第一种:生成段落的方式第二种:替换模板的情况,换行符替换成回车总结项目场景s

SpringBoot集成redisson实现延时队列教程

《SpringBoot集成redisson实现延时队列教程》文章介绍了使用Redisson实现延迟队列的完整步骤,包括依赖导入、Redis配置、工具类封装、业务枚举定义、执行器实现、Bean创建、消费... 目录1、先给项目导入Redisson依赖2、配置redis3、创建 RedissonConfig 配

SpringBoot中@Value注入静态变量方式

《SpringBoot中@Value注入静态变量方式》SpringBoot中静态变量无法直接用@Value注入,需通过setter方法,@Value(${})从属性文件获取值,@Value(#{})用... 目录项目场景解决方案注解说明1、@Value("${}")使用示例2、@Value("#{}"php

SpringBoot分段处理List集合多线程批量插入数据方式

《SpringBoot分段处理List集合多线程批量插入数据方式》文章介绍如何处理大数据量List批量插入数据库的优化方案:通过拆分List并分配独立线程处理,结合Spring线程池与异步方法提升效率... 目录项目场景解决方案1.实体类2.Mapper3.spring容器注入线程池bejsan对象4.创建

线上Java OOM问题定位与解决方案超详细解析

《线上JavaOOM问题定位与解决方案超详细解析》OOM是JVM抛出的错误,表示内存分配失败,:本文主要介绍线上JavaOOM问题定位与解决方案的相关资料,文中通过代码介绍的非常详细,需要的朋... 目录一、OOM问题核心认知1.1 OOM定义与技术定位1.2 OOM常见类型及技术特征二、OOM问题定位工具

基于 Cursor 开发 Spring Boot 项目详细攻略

《基于Cursor开发SpringBoot项目详细攻略》Cursor是集成GPT4、Claude3.5等LLM的VSCode类AI编程工具,支持SpringBoot项目开发全流程,涵盖环境配... 目录cursor是什么?基于 Cursor 开发 Spring Boot 项目完整指南1. 环境准备2. 创建

Spring Security简介、使用与最佳实践

《SpringSecurity简介、使用与最佳实践》SpringSecurity是一个能够为基于Spring的企业应用系统提供声明式的安全访问控制解决方案的安全框架,本文给大家介绍SpringSec... 目录一、如何理解 Spring Security?—— 核心思想二、如何在 Java 项目中使用?——

SpringBoot+RustFS 实现文件切片极速上传的实例代码

《SpringBoot+RustFS实现文件切片极速上传的实例代码》本文介绍利用SpringBoot和RustFS构建高性能文件切片上传系统,实现大文件秒传、断点续传和分片上传等功能,具有一定的参考... 目录一、为什么选择 RustFS + SpringBoot?二、环境准备与部署2.1 安装 RustF

springboot中使用okhttp3的小结

《springboot中使用okhttp3的小结》OkHttp3是一个JavaHTTP客户端,可以处理各种请求类型,比如GET、POST、PUT等,并且支持高效的HTTP连接池、请求和响应缓存、以及异... 在 Spring Boot 项目中使用 OkHttp3 进行 HTTP 请求是一个高效且流行的方式。

java.sql.SQLTransientConnectionException连接超时异常原因及解决方案

《java.sql.SQLTransientConnectionException连接超时异常原因及解决方案》:本文主要介绍java.sql.SQLTransientConnectionExcep... 目录一、引言二、异常信息分析三、可能的原因3.1 连接池配置不合理3.2 数据库负载过高3.3 连接泄漏