Map集合按照ASCII码从小到大(字典序)排序--JAVA

以下代码:将传参按照ASCII 码字典序排序,并将生成的字符串进行MD5加密

	/**
	 * 生成签名
	 * @param map
	 * @return
	 */
	public static String getSign(Map map) {

		String result = "";
		try {
			List> infoIds = new ArrayList>(map.entrySet());
			// 对所有传入参数按照字段名的 ASCII 码从小到大排序(字典序)
			Collections.sort(infoIds, new Comparator>() {

				public int compare(Map.Entry o1, Map.Entry o2) {
					return (o1.getKey()).toString().compareTo(o2.getKey());
				}
			});
			
			// 构造签名键值对的格式
			StringBuilder sb = new StringBuilder();
			for (Map.Entry item : infoIds) {
				if (item.getKey() != null || item.getKey() != "") {
					String key = item.getKey();
					String val = item.getValue();
					if (!(val == "" || val == null)) {
						sb.append(key + ":" + val + ":");
					}
				}

			}
//			sb.append(PropertyManager.getProperty("SIGNKEY"));
			result = sb.toString();
			
			//进行MD5加密
			result = DigestUtils.md5Hex(result).toUpperCase();
		} catch (Exception e) {
			return null;
		}
		return result;
	}




你可能感兴趣的:(共同进步)