MapUtils

11 篇文章 0 订阅
该博客介绍了Java中MapUtil工具类的实现,包括对Map进行分组、按指定大小拆分、过滤空值以及去重等操作。主要方法有groupList用于将Map分组,sub方法用于根据页码和大小获取子Map,filterNullVal方法用于过滤Map中的空值,以及distinctVal方法用于去除Map中重复的值。这些方法在处理大量Map数据时非常实用。
摘要由CSDN通过智能技术生成
/**
 * map工具类
 */
public class MapUtils extends MapUtil {

    public static final Map EMPTY_MAP = new EmptyMap();

    /**
     * map 分组
     * param map
     * param groupSize 分组大小
     */
    public static <V extends Serializable> List<Map<String, V>> groupList(Map<String, V> map, int groupSize){
        if(isEmpty(map)){
            return null;
        }
        int total = map.size();
        List<Map<String, V>> listEmailList = new ArrayList<Map<String, V>>();
        if(total < groupSize){
            listEmailList.add(map);
        }else{
            int pageCount = PageUtils.getPageCount(total, groupSize);
            for(int i=1; i<=pageCount;i++){
                listEmailList.add(sub(map, i, groupSize));
            }
        }
        return listEmailList;
    }

    public static <V extends Serializable> Map<String, V> sub(Map<String, V> map, int pageNo, int size){
        Map<String, V> newMap = null;
        if(map instanceof LinkedHashMap)
            newMap = new LinkedHashMap();
        else if(map instanceof TreeMap)
            newMap = new TreeMap();
        else
            newMap = new HashMap();

        int start = (pageNo - 1) * size;
        int dex = 0, end = start+size;
        for (Map.Entry<String, V> entry : map.entrySet()) {
            dex++;
            if(dex < start)
                continue;
            else if(dex > end)
                break;
            newMap.put(entry.getKey(), entry.getValue());
        }
        return newMap;
    }

    public static void filterNullVal(Map map){
        if(isEmpty(map)){
            return;
        }
        List<Object> filterKeys = new ArrayList(5);
        Object val = null;
        for (Object key : map.keySet()) {
            val = map.get(key);
            if(val == null || val.toString().length() == 0){
                filterKeys.add(key);
            }
        }
        for (Object filterKey : filterKeys) {
            map.remove(filterKey);
        }
    }

    /**
     * 去重复值
     * @param map
     * @return
     */
    public static Map distinctVal(Map map){
        if(isEmpty(map) || map.size() < 2)
            return map;
        Map newMap = new HashMap();
        for (Object key : map.keySet()) {
            if(!newMap.containsValue(map.get(key))){
                newMap.put(key, map.get(key));
            }
        }
        return newMap;
    }

}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

LC超人在良家

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值