微信支付宝小程序生成二维码

一、生成微信小程序二维码
微信官网API文档
1.下载到本地

@Overridepublic String getWxRemovalCode() {String appId = "微信小程序AppID";String secret = "微信小程序AppSecret";//获取凭证String token = weiXinService.getAccessToken(appId, secret);Map<String, Object> params = new HashMap<>();//前端页面需要的数据params.put("scene", value);//扫码后进入小程序的页面位置params.put("path", "https://argentian.com.cn/home/home"); //不是必须,需要的宽度,默认430x430,最小280最大1280params.put("width", 280);//默认是false,是否需要透明底色,为 true 时,生成透明底色的小程序params.put("is_hyaline", true);CloseableHttpClient httpClient = HttpClientBuilder.create().build();HttpPost httpPost = new HttpPost("https://api.weixin.qq.com/wxa/getwxacodeunlimit?access_token=" + token);httpPost.addHeader(HTTP.CONTENT_TYPE, "application/json");String body = JSON.toJSONString(params);//必须是json模式的 postStringEntity entity = null;try {InputStream inputStream = null;try {entity = new StringEntity(body);entity.setContentType("image/png");httpPost.setEntity(entity);HttpResponse response;response = httpClient.execute(httpPost);inputStream = response.getEntity().getContent();String path = "D:\\\\code\\wx";//文件路径//生成图片文件File file = new File(path);//如果文件夹不存在就创建文件夹if (!file.exists()) {file.mkdirs();}OutputStream os = null;try {os = new FileOutputStream(file + "\\文件名");int len = 0;byte[] buffer = new byte[8192];while ((len = inputStream.read(buffer)) != -1) {os.write(buffer, 0, len);}} finally {os.close();inputStream.close();}} catch (Exception e) {e.printStackTrace();return "生成失败";}} catch (Exception e) {e.printStackTrace();return "生成失败";}}return "生成微信小程序二维码成功";}

2.存到图片服务器(实例:阿里云图片服务器)

@Overridepublic String getWxRemovalCode() {String appId = "微信小程序AppID";String secret = "微信小程序AppSecret";//获取凭证String token = weiXinService.getAccessToken(appId, secret);Map<String, Object> params = new HashMap<>();//前端页面需要的数据params.put("scene", value);//扫码后进入小程序的页面位置params.put("path", "https://argentian.com.cn/home/home"); //不是必须,需要的宽度,默认430x430,最小280最大1280params.put("width", 280);//默认是false,是否需要透明底色,为 true 时,生成透明底色的小程序params.put("is_hyaline", true);CloseableHttpClient httpClient = HttpClientBuilder.create().build();HttpPost httpPost = new HttpPost("https://api.weixin.qq.com/wxa/getwxacodeunlimit?access_token=" + token);httpPost.addHeader(HTTP.CONTENT_TYPE, "application/json");String body = JSON.toJSONString(params);//必须是json模式的 postStringEntity entity = null;try {InputStream inputStream = null;try {entity = new StringEntity(body);entity.setContentType("image/png");httpPost.setEntity(entity);HttpResponse response;response = httpClient.execute(httpPost);inputStream = response.getEntity().getContent();Date date = new Date();Long timestamp = date.getTime();String fileName = timestamp.toString() + ".png";//文件名//生成图片文件File file = new File(fileName );OutputStream os = null;try {os = new FileOutputStream(file);int len = 0;byte[] buffer = new byte[8192];while ((len = inputStream.read(buffer)) != -1) {os.write(buffer, 0, len);}} finally {os.close();inputStream.close();}//转成文件格式DiskFileItem fileItem = (DiskFileItem) new DiskFileItemFactory().createItem("file",MediaType.ALL_VALUE, true, file.getName());try (InputStream input = new FileInputStream(file); OutputStream os = fileItem.getOutputStream()) {IOUtils.copy(input, os);} catch (Exception e) {throw new IllegalArgumentException("Invalid file: " + e, e);}MultipartFile multipartFile = new CommonsMultipartFile(fileItem);//调用阿里云静态方法上传到阿里云服务器并返回图片地址String url = FileUpload.aliyunUpload(multipartFile);return url;} catch (Exception e) {e.printStackTrace();}} catch (Exception e) {e.printStackTrace();}return "操作失败";}
 public static String aliyunUpload(MultipartFile myFile) {// 上传路径String dateString = DateUtil.getDate(new Date(), DateUtil.YYYYMMDD);String oldFileName = myFile.getOriginalFilename();if(!oldFileName.contains(".")){oldFileName=myFile.getName();}String objectName = dateString + SLASH + UUID.randomUUID().toString().replaceAll("-", "") +oldFileName.substring(oldFileName.lastIndexOf("."));// 创建OSSClient实例。OSS ossClient = new OSSClientBuilder().build(endpoint, accessKeyId, accessKeySecret);try {InputStream inputStream = myFile.getInputStream();ObjectMetadata meta = new ObjectMetadata();meta.setContentType("image/jpg");// 创建PutObject请求。ossClient.putObject(bucketName, objectName, inputStream, meta);} catch (Exception oe) {} finally {if (ossClient != null) {ossClient.shutdown();}}//访问图片路径String urlPrefix = "argentian";//前缀return urlPrefix + objectName;}

二、生成支付宝小程序二维码
支付宝官方API文档

@Override
public String getZfbRemovalCode(HttpServletResponse response2) {String appId = "支付宝小程序appId";String privateKey  = "应用私钥";String alipayPublicKey = "支付宝公钥";AlipayClient alipayClient = new DefaultAlipayClient("https://openapi.alipay.com/gateway.do",appId, privateKey, "json", "UTF-8", alipayPublicKey, "RSA2");AlipayOpenAppQrcodeCreateRequest request = new AlipayOpenAppQrcodeCreateRequest();AlipayOpenAppQrcodeCreateModel model = new AlipayOpenAppQrcodeCreateModel();model.setUrlParam("/pages/home/home");model.setDescribe("小程序二维码");//自定义数据  key=valuemodel.setQueryParam("key=" + value);request.setBizModel(model);AlipayOpenAppQrcodeCreateResponse response = alipayClient.execute(request);if (response.isSuccess()) {//获取响应数据里面的蓝底圆码链接地址String url = response.getQrCodeUrlCircleBlue();//将普通下载到本地指定文件夹下String imageUrl = downloadWithUrl(url, response2);//裁剪图片(生成的二维码下放有 “打开支付宝[扫一扫]” 文字描述,将文字描述裁剪掉)cutOutImage(imageUrl, "裁剪后本地存放路径","裁剪后文件名" , 14, 14, 270, 270);}} catch (AlipayApiException e) {log.error("AlipayApiException:", e);} catch (Exception e) {log.error("AdminException:", e);}}return "生成支付宝二维码成功";}
/*** 通过URL下载文件*/public String downloadWithUrl(String path, HttpServletResponse response) throws IOException {//设置响应参数response.setCharacterEncoding("UTF-8");response.setContentType("multipart/form-data");//response.setHeader("Content-Disposition", " attachment; filename=" + fileName);//使用此会导致中文变“_”下划线response.setHeader("Content-Disposition", " attachment; filename=" + new String(fileName.getBytes(), "iso-8859-1"));InputStream is = null;OutputStream os = null;;String filePath = "";//文件路径//生成图片文件File file = new File(filePath );if (!file.exists()) {file.mkdirs();}try {//创建数据流,执行下载URL url = new URL(path);is = url.openStream();os = new FileOutputStream(file + "\\文件名");byte[] bytes = IOUtils.toByteArray(is);os.write(bytes);return file + "\\文件名";} finally {if (null != os)os.close();if (null != is)is.close();}}
 /*** 图片裁剪** @param imagePath 图片地址* @param outputDir 临时目录* @param name 文件名* @param startX 裁剪起始x坐标* @param startY 裁剪起始y坐标* @param weight 裁剪宽度* @param height 裁剪高度* @throws Exception 异常*/public static String cutOutImage(String imagePath,String outputDir,String name,Integer startX,Integer startY,Integer weight,Integer height)throws Exception {List<String> paths = Splitter.on(".").splitToList(imagePath);String ext = paths.get(paths.size() - 1);if (!Arrays.asList("png", "jpg").contains(ext)) {throw new Exception("format error");}//生成文件名String resultPath =Joiner.on(File.separator).join(Arrays.asList(outputDir, IdUtil.simpleUUID() + "." + ext));//自定义文件名String path = outputDir + "\\" + name;String ffmpeg = Loader.load(org.bytedeco.ffmpeg.ffmpeg.class);ProcessBuilder builder =new ProcessBuilder(ffmpeg,"-i",imagePath,"-vf",MessageFormat.format("crop={0}:{1}:{2}:{3}",String.valueOf(weight),String.valueOf(height),String.valueOf(startX),String.valueOf(startY)),"-y",path//生成文件名or自定义文件名);builder.inheritIO().start().waitFor();return path;}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/235945.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【CSS @property】CSS自定义属性说明与demo

CSS property property - CSS: Cascading Style Sheets | MDN At 规则 - CSS&#xff1a;层叠样式表 | MDN Custom properties (–*): CSS variables - CSS: Cascading Style Sheets | MDN CSS Houdini - Developer guides | MDN &#x1f4da; 什么是property? property CSS…

Web ML 库的Transformers.js 提供文本转语音功能

JavaScript 库 Transformers.js 提供了类似 Python Transformers 库的功能&#xff0c;设计用于在 Web 浏览器中直接运行 Transformer 模型&#xff0c;而不再需要外部服务器参与处理。在最新的 2.7 版本中&#xff0c;Transformers.js 引入了增强功能&#xff0c;其中包括文本…

2023年度佳作:AIGC、AGI、GhatGPT 与人工智能大模型的创新与前景展望

&#x1f3ac; 鸽芷咕&#xff1a;个人主页 &#x1f525; 个人专栏:《linux深造日志》《粉丝福利》 ⛺️生活的理想&#xff0c;就是为了理想的生活! ⛳️ 写在前面参与规则 ✅参与方式&#xff1a;关注博主、点赞、收藏、评论&#xff0c;任意评论&#xff08;每人最多评论…

day5 力扣合并区间--实际应用视频剪辑

以数组 intervals 表示若干个区间的集合&#xff0c;其中单个区间为 intervals[i] [starti, endi] 。请你合并所有重叠的区间&#xff0c;并返回 一个不重叠的区间数组&#xff0c;该数组需恰好覆盖输入中的所有区间 。示例 1&#xff1a; 输入&#xff1a;intervals [[1,3],…

System.Text.Json类库进行json转化时 ValueKind:Object 问题

文章目录 写在前面问题描述解决办法扩展 Datetime类型转换源码完整的配置 写在前面 以下方法中的所有转换器都属于刚刚能解决我的问题状态&#xff0c;实际使用过程中应该编写更加严谨的逻辑。 问题描述 webapi 当使用System.Text.Json类库进行json转化时&#xff0c;如果没…

LeetCode 2828. 判别首字母缩略词

【LetMeFly】2828.判别首字母缩略词 力扣题目链接&#xff1a;https://leetcode.cn/problems/check-if-a-string-is-an-acronym-of-words/ 给你一个字符串数组 words 和一个字符串 s &#xff0c;请你判断 s 是不是 words 的 首字母缩略词 。 如果可以按顺序串联 words 中每…

MTK平台 BT从SW 如何分析 Pairing Fail 和 Abnormal Disconnection Issue

一 概要 本文旨在介绍当配对/回连失败(Pairing Fail) 以及 异常断线(Abnormal Disconnection) 类问题发生时,需要取得哪些必要的log、如何获取这些log,以及怎样对log进行简单的分析解读,协助定位问题点,过滤掉一些常见的因测试操作步骤、IOT device、测试环境等导致的误…

TCP 核心工作机制

TCP 的核心知识&#xff1a;如何保证传输可靠 如何提高传输效率 如何保证传输可靠&#xff1a;确认应答机制 超时重传机制 如何提高传输效率&#xff1a;滑动窗口机制、流量控制机制、延时应答机制、捎带确认机制、拥塞控制机制 可靠机制 TCP的可靠性主要是通过 确认应答 …

【轻量化篇】YOLOv8改进实战 | 更换主干网络 Backbone 之 RepGhostnet,重参数化实现硬件高效的Ghost模块

YOLOv8专栏导航:点击此处跳转 前言 轻量化网络设计是一种针对移动设备等资源受限环境的深度学习模型设计方法。下面是一些常见的轻量化网络设计方法: 网络剪枝:移除神经网络中冗余的连接和参数,以达到模型压缩和加速的目的。分组卷积:将卷积操作分解为若干个较小的卷积操…

[学习笔记]SQL Server中批量查找所有符合Where条件的记录

目标&#xff1a;在SQL Server中查找所有表的UserId 50的记录 创建一个表变量来存储所有包含’UserId’列的表的名称。然后使用一个游标遍历这些表&#xff0c;并对每个表执行一个动态SQL查询 DECLARE TableName nvarchar(256), ColumnName nvarchar(128), SearchStr2 nvarc…

CentOS 宣布停更3年后,服务器操作系统何去何从?

“CentOS 要停止更新了&#xff1f;” 盯着电脑&#xff0c;某大型企业数字化部门的负责人彭素素看到这个消息&#xff0c;不仅在心里发出了一声惊呼。 2020年&#xff0c;CentOS 停止更新的消息&#xff0c;不仅彭素素所在的企业&#xff0c;对于不少正在使用 CentOS 的厂商…

app设置为HomeLauncher后,如果进行adb install安装,界面会黑屏问题排查记录

一、开始以为是PMS的问题,但是读完PackageManagerService.java的安装流程后发现并不是这么回事。 其中比较重要的是freezePackageForInstall函数,app在替换原来的内容之前,会先冻住正在运行的app,然后发送kill命令到ActivityManagerService,在AMS中才会去kill掉app。而且…

Python多个列表连接实例代码解析

概要 在Python中&#xff0c;连接多个列表是一种常见的操作&#xff0c;用于将多个列表合并为一个。这个过程可以应用于各种数据处理和编程任务中。本文将介绍多种连接多个列表的方法&#xff0c;并提供详细的示例代码来帮助大家更好地理解。 使用 运算符 最简单的方法是使用…

【RTOS学习】源码分析(信号量和互斥量 事件组 任务通知)

&#x1f431;作者&#xff1a;一只大喵咪1201 &#x1f431;专栏&#xff1a;《RTOS学习》 &#x1f525;格言&#xff1a;你只管努力&#xff0c;剩下的交给时间&#xff01; 目录 &#x1f353;信号量和互斥量&#x1f345;创建&#x1f345;Take&#x1f345;Give &#x…

IDEA版SSM入门到实战(Maven+MyBatis+Spring+SpringMVC) -SpringMVC搭建框架

第一章 初识SpringMVC 1.1 SpringMVC概述 SpringMVC是Spring子框架 SpringMVC是Spring 为**【展现层|表示层|表述层|控制层】**提供的基于 MVC 设计理念的优秀的 Web 框架&#xff0c;是目前最主流的MVC 框架。 SpringMVC是非侵入式&#xff1a;可以使用注解让普通java对象&…

Windows: office: MS word: 吐槽:怎么分割一个word文档

最近打开3GPP24-229 这个文档&#xff0c;非常的慢。这个文档文件17M&#xff0c;有一千多页。想着看能不能分割一下分成几个小文件。 从网上找了很长时间&#xff0c;也没找到一个简单明了的合适方法。 其实这种需求非常的普通&#xff0c;但是看着微软没有意愿做这么个简单的…

JS模块化规范之CMD

JS模块化规范之CMD 模块化规范CMD&#xff08;Common Module Definition&#xff09;概念基本语法CMD实现 模块化规范 CMD&#xff08;Common Module Definition&#xff09; 概念 CommonJS module definition CMD规范专门用于浏览器端&#xff0c;模块的加载时异步的&#x…

Pytest fixture 的四种作用域:session、module、class 和 function

当使用 Pytest 测试框架时&#xff0c;fixture 可以具有不同的作用域&#xff0c;以控制其生命周期和共享范围。Pytest 支持四种不同的 fixture 作用域&#xff1a;session、module、class 和 function。 session 作用域(Session Scope)&#xff1a; session 作用域是最宽泛的作…

简单的几个基础卷积操作

当构建卷积神经网络时&#xff0c;我们可以使用不同的卷积操作来提取图像特征。以下是一些常见的卷积操作&#xff0c;以及它们的 PyTorch 实现&#xff1a; 标准卷积层&#xff1a;通过 nn.Conv2d 实现标准的卷积操作。 conv_standard nn.Conv2d(in_channels3, out_channel…

应用 Strangler 模式将遗留系统分解为微服务

许多来源在一般情况下提供了微服务的解释&#xff0c;但缺乏特定领域的示例。新来者或不确定从哪里开始的人可能会发现掌握如何将遗留系统过渡到微服务架构具有挑战性。本指南主要面向那些正在努力启动迁移工作的个人&#xff0c;它提供了特定于业务的示例来帮助理解该过程。 …