java对接第三方支付平台易支付通用代码 - 技术分享 - 五行资源分享网

java对接第三方支付平台易支付通用代码

作者头像图片

作者: 五行

网络资源搬砖的爱好者

文章二维码手机扫码查看

特别声明:文章多为网络转载,资源使用一般不提供任何帮助,如有侵权请联系!

核心代码
void toImGES(HttpServletResponse response) {
//API接口支付
String url = "https://kutipay.com/mapi.php";
//pid={商户ID}&type={支付方式}&out_trade_no={商户订单号}&notify_url={服务器异步通知地址}&return_url={页面跳转通知地址}&name={商品名称}&money={金额}&clientip={用户IP地址}&device={设备类型}&sign={签名字符串}&sign_type=MD5
String pid = "16356", type = "wxpay", out_trade_no = "5D4A5S4D5WQ", notify_url = "http://www.pay.com/notify_url.php", return_url = "http://www.pay.com/notify_url.php", name = "CS", money = "1", clientip = "192.168.0.1", device = "pc", sign = "", sign_type = "MD5";
//[clientip, device, money, name, notify_url, out_trade_no, pid, return_url, sign_type, type]
String mdString = "clientip=" + clientip + "&device=" + device + "&money=" + money + "&name=" + name + "&" +
"notify_url=" + notify_url + "&out_trade_no=" + out_trade_no + "&pid=" + pid + "&return_url=" + return_url +
"&type=" + type + "f56f7fe37D753X77WfA5fe3GAE74dw7w";
sign = MD5.GetMD5Code(mdString);
System.out.println(sign);
System.out.println(mdString);
Map<String, Object> map = new HashMap<>();
map.put("clientip", clientip);
map.put("device", device);
map.put("money", money);
map.put("name", name);
map.put("notify_url", notify_url);
map.put("out_trade_no", out_trade_no);
map.put("pid", pid);
map.put("return_url", return_url);
map.put("sign_type", sign_type);
map.put("type", type);
map.put("sign", sign);
String body = HttpUtil.post(url, map);
JSONObject jsonObject = new JSONObject(body);
String wxUrl = (String) jsonObject.get("qrcode");
try {
QrConfig config = new QrConfig(300, 300);
QrCodeUtil.generate(wxUrl, config, "png", response.getOutputStream());
} catch (IOException e) {
e.printStackTrace();
}
}

源码:https://gitee.com/CodeLiQing/third-party-payment-docking

 

 

 

 

java对接第三方支付平台易支付通用代码-五行资源分享网-第1张图片

本文最后更新于2022-3-26,已超过 1 年没有更新,如果文章内容或图片资源失效,请留言反馈,我们会及时处理,谢谢!
分享到:
打赏
未经允许不得转载:

作者: 五行, 转载或复制请以 超链接形式 并注明出处 五行资源分享网
原文地址: 《java对接第三方支付平台易支付通用代码》 发布于2022-3-26 20:40
帖子声明: 本站对文章进行整理、排版、编辑,是出于传递信息之目的, 并不意味着赞同其观点或证实其内容的真实性,不拥有所有权,不承担相关法律责任。

评论

在线链接输入图片 打卡按钮图片 私密评论按钮图片 22 + 57 =
乱评论、多次评论者一律禁言帐号或封禁IP
本站已经全面开启缓存,评论查看隐藏内容需等待1分钟后再刷新本页!

 

觉得文章有用就打赏一下文章作者

微信扫一扫打赏

打赏图片