码迷,mamicode.com
首页 > 编程语言 > 详细

使用jdk1.8 stream特性对参数名称进行排序

时间:2020-06-11 16:14:34      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:签名   行操作   使用   public   特性   dex   app   需要   ret   

在对外对接的时候,通常会碰到签名方式, 然后签名的时候,要求按照参数名称进行排序.

比如参数为 c=22&a=1, 需要将结果排序为a=1&c=22, 然后再进行别的运算.

可以使用jdk1.8特性stram进行操作, 参考如下语句: 

 

String param = "x=4&a=&ca=2&acb=3&sign=xxx";
Object result = sortParamByKey(param.split("&"));

 

public static String sortParamByKey(String[] param) {
        if(param != null) {
            List<String> params = Arrays.asList(param);
            String result = params.stream()        
            .collect(Collectors.toMap(v->v.split("=")[0],v->v.substring(v.indexOf("=")+1)))
            .entrySet().stream()
            .filter(e->!(e.getValue()==null || "".equals(e.getValue())))
            .filter(e->!"sign".equalsIgnoreCase(e.getKey()))//sign为key的时候,去除
            .sorted(Map.Entry.comparingByKey())
            .map(e->new StringBuilder(e.getKey()).append("=").append(e.getValue()))
            .collect(Collectors.joining("&"))
            ;
            return result;
        }
        return null;
    }

 

tips: 可以针对Request进行进一步封装, 另外上面这个代码当参数名称重复的时候,会去除一个参数. 因为代码将list转map了. 所以可以考虑直接传map.value是数组的实现方式.

 

使用jdk1.8 stream特性对参数名称进行排序

标签:签名   行操作   使用   public   特性   dex   app   需要   ret   

原文地址:https://www.cnblogs.com/zkongbai/p/13093672.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!