PayHttpUtil.java 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. package com.game.business.util.other;
  2. import com.alibaba.fastjson.JSONObject;
  3. import org.apache.commons.lang3.StringUtils;
  4. import org.apache.http.HttpEntity;
  5. import org.apache.http.util.Args;
  6. import org.slf4j.Logger;
  7. import org.slf4j.LoggerFactory;
  8. import javax.servlet.ServletInputStream;
  9. import javax.servlet.http.HttpServletRequest;
  10. import java.io.*;
  11. import java.util.*;
  12. public class PayHttpUtil {
  13. private static final Logger _log = LoggerFactory.getLogger(PayHttpUtil.class);
  14. public static String getSign(Map<String, Object> map, String key) {
  15. StringBuffer sb = new StringBuffer();
  16. Set es = map.entrySet();
  17. Iterator it = es.iterator();
  18. String sign = "";
  19. while(it.hasNext()) {
  20. Map.Entry entry = (Map.Entry)it.next();
  21. String v = (String)entry.getValue();
  22. if (StringUtils.isNotBlank(v)) {
  23. sb.append(v);
  24. }
  25. }
  26. sign = sb.toString();
  27. String signStr = sign + key;
  28. try {
  29. _log.info("待签名串:{}", new Object[]{signStr});
  30. sign = MD5Util.string2MD5(signStr);
  31. _log.info("签名结果:{}", new Object[]{sign});
  32. } catch (Exception var8) {
  33. var8.printStackTrace();
  34. }
  35. return sign;
  36. }
  37. /**
  38. * InputStream转换成String
  39. * 注意:流关闭需要自行处理
  40. * @param entity
  41. * @param encoding 编码
  42. * @return String
  43. * @throws Exception
  44. */
  45. public static String InputStreamTOString(HttpEntity entity, String encoding) throws IOException {
  46. Args.notNull(entity, "Entity");
  47. InputStream instream = entity.getContent();
  48. if (instream == null) {
  49. return null;
  50. }else{
  51. return new String(InputStreamTOByte(instream),encoding);
  52. }
  53. }
  54. /**
  55. * InputStream转换成Byte
  56. * 注意:流关闭需要自行处理
  57. * @param in
  58. * @return byte
  59. * @throws Exception
  60. */
  61. public static byte[] InputStreamTOByte(InputStream in) throws IOException {
  62. int BUFFER_SIZE = 4096;
  63. ByteArrayOutputStream outStream = new ByteArrayOutputStream();
  64. byte[] data = new byte[BUFFER_SIZE];
  65. int count = -1;
  66. while((count = in.read(data,0,BUFFER_SIZE)) != -1)
  67. outStream.write(data, 0, count);
  68. data = null;
  69. byte[] outByte = outStream.toByteArray();
  70. outStream.close();
  71. return outByte;
  72. }
  73. /** <一句话功能简述>
  74. * <功能详细描述>request转字符串
  75. * @param request
  76. * @return
  77. * @see [类、类#方法、类#成员]
  78. */
  79. public static String parseRequst(HttpServletRequest request){
  80. String body = "";
  81. try {
  82. ServletInputStream inputStream = request.getInputStream();
  83. BufferedReader br = new BufferedReader(new InputStreamReader(inputStream));
  84. while(true){
  85. String info = br.readLine();
  86. if(info == null){
  87. break;
  88. }
  89. if(body == null || "".equals(body)){
  90. body = info;
  91. }else{
  92. body += info;
  93. }
  94. }
  95. } catch (UnsupportedEncodingException e) {
  96. e.printStackTrace();
  97. } catch (IOException e) {
  98. e.printStackTrace();
  99. }
  100. return body;
  101. }
  102. public static String getParamsFromFormDataByNames(HttpServletRequest request){
  103. Map<String, String> map =new HashMap<>();
  104. Enumeration<String> er = request.getParameterNames();
  105. while (er.hasMoreElements()) {
  106. String name = (String) er.nextElement();
  107. String value = request.getParameter(name);
  108. map.put(name, value);
  109. }
  110. return JSONObject.toJSONString(map);
  111. }
  112. }