list根据某字段去重

List list = eduSchoolSupplierService.findSchool(schoolDto);
        if(list != null && list.size() >0){
            list = mySortSchool(list);

        }




    private List mySortSchool(List list) {
        HashMap tempMap = new HashMap();
        for (CheckSchoolDto c : list) {
            String key = c.getSchoolId();
            if(tempMap.containsKey(key)){
                
            }else{
                tempMap.put(key, c);
            }
        }
        List tempList = new ArrayList();
        for(String key : tempMap.keySet()){
            tempList.add(tempMap.get(key));
        }
        return tempList;
    }

你可能感兴趣的:(java)