javastream集合运算
1.对列表进⾏分组,构建成⼀个map对象。
键为⽤户名称,值为⽤户对象列表。
Person p1 = new Person("张三", new BigDecimal("10.0"));
Person p2 = new Person("王五", new BigDecimal("10.0"));
Person p3 = new Person("李四", new BigDecimal("10.0"));
Person p4 = new Person("李四", new BigDecimal("10.0"));
Person p5 = new Person("张三", new BigDecimal("10.0"));
List<Person> list = new ArrayList<>();
list.add(p1);
list.add(p2);
list.add(p3);
list.add(p4);
list.add(p5);
这个我们之前写代码可以需要写成如下的⽅式:
private Map<String,List<Person >> convertToMap(List<Person > list){
Map<String,List<Persion>> map=new HashMap<>();
for(Person p: list){
String Name();
ainsKey(name){
(name).add(p);
}
else{
List<Person> list=new ArrayList();
list.add(p);
map.put(name,p);
}
}
return map;
}
写了⼀⼤段代码。
使⽤steam 就简单了,⼀⾏代码解决问题。
Map<String, List<Person>> collect = list.stream().upingBy(person -> Name()));
System.out.println(collect);
2.将list 转成 map 对象。
Person p1 = new Person("1","张三", new BigDecimal("10.0"));
Person p2 = new Person("2","王五", new BigDecimal("10.0"));
Person p3 = new Person("3","李四", new BigDecimal("10.0"));
Person p4 = new Person("4","李四", new BigDecimal("10.0"));
Person p5 = new Person("5","张三", new BigDecimal("10.0"));
List<Person> list = new ArrayList<>();
list.add(p1);
list.add(p2);
list.add(p3);
list.add(p4);
list.add(p5);
上⾯的数据我们转成 Map<String,Person> 对象。
Map<String, Person> nodeMap = bpmSolUsergroups.stream().Map(p-&Id(), p -> p));
3.对列表进⾏过滤
public static void main(String[] args) {
List<BpmCheckFile> filesInst =new ArrayList<>();
BpmCheckFile file1=new BpmCheckFile();
file1.setJumpId("1");
BpmCheckFile file11=new BpmCheckFile();
java streamfile11.setJumpId("1");
BpmCheckFile file2=new BpmCheckFile();
file2.setJumpId("2");
filesInst.add(file1);
filesInst.add(file11);
filesInst.add(file2);
List<BpmCheckFile> files= filesInst.stream().filter(p-&JumpId()=="1").List());
}
对列表数据进⾏过滤。
4.将JSONARRAY 转换成 Map对象
public static void main(String[] args) {
String str="[{id:1,name:'ray'},{id:2,name:'zyg'}]";
JSONArray ary=JSONArray.parseArray(str);
Map<String, JSONObject> map= ary.stream().Map(i->{JSONObject json=(JSONObject)i;
String("id");} , p->{JSONObject json=(JSONObject)p;return json;}));
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论