摘要:/** * Desc:weChat构建请求参数 * 参数名ASCII码从小到大排序(字典序) * @param params * @return */ public static String buildBodyXml(Map params){ SortedMap sort=new TreeMap(params); ...
阅读全文
随笔分类 - 支付专区
摘要:/** * Desc:微信签名 * 参数名ASCII码从小到大排序(字典序) * @param key weChat sign * @param params 参数 * @return sign * @throws Exception */ public static String weChatSign(Str...
阅读全文
摘要:public static Map parseBodyXml2Map(String xml){ Map map = new HashMap(); Document doc = null; try { doc = DocumentHelper.parseText(xml); // 将字符串转为XML ...
阅读全文