gpt4 book ai didi

SpringMvc微信支付回调示例代码

转载 作者:qq735679552 更新时间:2022-09-29 22:32:09 42 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章SpringMvc微信支付回调示例代码由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

介绍 。

大家都知道微信支付的回调链接要求不能跟参数,但又要接收返回的xml数据。我开始使用@RequestBody注解在参数上,希望能获取xml数据,测试失败。最后使用HttpServletRequest去获取数据成功了.

示例代码 。

?
1
2
3
4
5
6
7
8
@RequestMapping ( "/weixinpay/callback" )
public String callBack(HttpServletRequest request){
  InputStream is = request.getInputStream();
  String xml = StreamUtil.inputStream2String(is, "UTF-8" )
  /**
  * 后面把xml转成Map根据数据作逻辑处理
  */
}
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/**
  * InputStream流转换成String字符串
  * @param inStream InputStream流
  * @param encoding 编码格式
  * @return String字符串
  */
public static String inputStream2String(InputStream inStream, String encoding){
  String result = null ;
  try {
  if (inStream != null ){
   ByteArrayOutputStream outStream = new ByteArrayOutputStream();
   byte [] tempBytes = new byte [_buffer_size];
   int count = - 1 ;
   while ((count = inStream.read(tempBytes, 0 , _buffer_size)) != - 1 ){
     outStream.write(tempBytes, 0 , count);
   }
   tempBytes = null ;
   outStream.flush();
   result = new String(outStream.toByteArray(), encoding);
  }
  } catch (Exception e) {
  result = null ;
  }
  return result;
}

总结 。

以上就是这篇文章SpringMvc微信支付回调示例代码的全部内容了,希望能对大家的学习或者工作带来一定的帮助,如果有疑问大家可以留言交流.

最后此篇关于SpringMvc微信支付回调示例代码的文章就讲到这里了,如果你想了解更多关于SpringMvc微信支付回调示例代码的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

42 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com