java jdk1.8 使用stream流進(jìn)行l(wèi)ist 分組歸類操作
我就廢話不多說了,大家還是直接看代碼吧~
import com.alibaba.fastjson.JSON;import java.util.ArrayList;import java.util.List;import java.util.stream.Collectors;/** * @author czw */public class Foo{ private String name; private String type; private Double typeValue; private Integer count; public Foo(String name, String type, Double typeValue, Integer count) { this.name = name; this.type = type; this.typeValue = typeValue; this.count = count; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getType() { return type; } public void setType(String type) { this.type = type; } public Double getTypeValue() { return typeValue; } public void setTypeValue(Double typeValue) { this.typeValue = typeValue; } public Integer getCount() { return count; } public void setCount(Integer count) { this.count = count; } @Override public String toString() { return 'Foo{' +'name=’' + name + ’’’ +', type=’' + type + ’’’ +', typeValue=' + typeValue +', count=' + count +’}’; } public static void main(String[] args) { List<Foo> fooList = new ArrayList<Foo>(); fooList.add(new Foo('A','san',1.0,2)) ; fooList.add( new Foo('A','nas',13.0,1)) ; fooList.add(new Foo('B','san',112.0,3)) ; fooList.add(new Foo('C','san',43.0,5)) ; fooList.add(new Foo('B','nas',77.0,7)) ; List<List<Foo>> groupList = new ArrayList<>(); fooList.stream().collect(Collectors.groupingBy(Foo::getName,Collectors.toList())).forEach((name,fooListByName)->{ groupList.add(fooListByName);}); System.out.println(JSON.toJSONString(groupList)); }}
輸出結(jié)果
[ [{ 'count': 2, 'name': 'A', 'type': 'san', 'typeValue': 1 }, { 'count': 1, 'name': 'A', 'type': 'nas', 'typeValue': 13 }], [{ 'count': 3, 'name': 'B', 'type': 'san', 'typeValue': 112 }, { 'count': 7, 'name': 'B', 'type': 'nas', 'typeValue': 77 }], [{ 'count': 5, 'name': 'C', 'type': 'san', 'typeValue': 43 }]]
補(bǔ)充知識(shí):java jdk1.8的stream復(fù)雜和簡(jiǎn)單的分組
獲取List對(duì)象中的某個(gè)參數(shù)時(shí):
List<Map<String,String>> param = new ArrayList<>();Map<String,String> map = new HashMap<>();map.put('id','1213');map.put('name','test');List<String> strList = param.stream().map(key ->key.get('name')).collect(Collectors.toList());
簡(jiǎn)單參數(shù)分組:
List<DamoForm> damoformList = new ArrayList<>();Map<String, Map<String, List<DamoForm>>> collect = damoformList.stream().collect(Collectors.groupingBy(DamoForm::getId())).entrySet().stream().collect(Collectors.toMap( entry -> entry.getKey(), entry -> entry.getValue().stream().collect(Collectors.groupingBy(DamoForm::getName()))));
針對(duì)List復(fù)雜排序,多個(gè)條件進(jìn)行排序:
應(yīng)用場(chǎng)景:針對(duì)List中某個(gè)字段的數(shù)據(jù)進(jìn)行雙重倒序的方式排序,代碼有點(diǎn)復(fù)雜,不明白的可以留言。
List<DamoForm> damoformList = new ArrayList<>();List<Map<String, Object>> result = damoformList.stream() .collect(Collectors.groupingBy(DamoForm::getPartClass)) .entrySet() .stream() .sorted((o1, o2) -> { /** 這里排序,任何有1的排在前,全部是0排在后*/Integer sort1 = o1.getValue().stream().anyMatch(item -> item.getIsFlag() > 0) ? -1 : 1;Integer sort2 = o2.getValue().stream().anyMatch(item -> item.getIsFlag() > 0) ? -1 : 1;return sort1.compareTo(sort2); }) .map(entry -> {Map<String, Object> map = Maps.newHashMapWithExpectedSize(2);map.put('repairItemTypeName', entry.getKey()); /* * 這里排序,1排在前,0排在后 */ List<DamoVO> damoVOList = entry.getValue().stream() .sorted(Comparator.comparingInt(o -> (o.getIsFlag() * -1))) .collect(Collectors.toList()); map.put('repairTypeList', itemDescFormList); return map; }) .collect(Collectors.toList());
以上這篇java jdk1.8 使用stream流進(jìn)行l(wèi)ist 分組歸類操作就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持好吧啦網(wǎng)。
相關(guān)文章:
1. Ajax提交post請(qǐng)求案例分析2. python 批量下載bilibili視頻的gui程序3. 使用css實(shí)現(xiàn)全兼容tooltip提示框4. python numpy庫(kù)np.percentile用法說明5. 一篇文章弄清楚Ajax請(qǐng)求的五個(gè)步驟6. PHP 面向?qū)ο蟪绦蛟O(shè)計(jì)之類屬性與類常量實(shí)現(xiàn)方法分析7. python中HTMLParser模塊知識(shí)點(diǎn)總結(jié)8. Java Spring WEB應(yīng)用實(shí)例化如何實(shí)現(xiàn)9. CSS自定義滾動(dòng)條樣式案例詳解10. JSP實(shí)現(xiàn)客戶信息管理系統(tǒng)
