当前位置:   article > 正文

java forEach循环list、获取list中的指定数据_java foreach遍历集合并输出某一个特定值

java foreach遍历集合并输出某一个特定值

java forEach循环list、获取list中的指定数据

eg: List entityList = xxxx.getAllList();

1.forEach循环list

 entityList .forEach(
     listBean -> {
     	Integer id = listBean.getId();
     	Integer actId = listBean.getActId();
     	String name = listBean.getName(); //
     	listBean.setTitle("为title赋值新值");
     	......
       }
   )
   或
   for(ListBean listBean : b){
   		Integer id = b.getId();
     	Integer actId = b.getActId();
     	String name = b.getName(); //
     	b.setTitle("为title赋值新值");
   }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

2.获取list中的指定数据

1.获取listBean集合中所有actId = x 的数据集合

List<Xxxx> firstListBeans = new ArrayList<>();
firstListBeans = listBean.stream().filter(vsList-> vsList.getActId() == x).collect(Collectors.toList());
  • 1
  • 2

2.去除entityLists1中与entityLists2中name不相同的值的数据

List<ListBean> entityLists1 = xxxx.getAllList();
List<ListBean> entityLists2 = xxxx.getList(name);
final List<ListBean>[] finalListBeans = new List[]{entityLists2 };
entityLists1 .forEach(entityList1 ->{
	finalListBeans[0] = finalListBeans[0].stream().filter(entityList2 -> entityList1.getName != entityList2.getName).collect(Collectors.toList());
});
//去除相同name值后的集合数据
List<ListBean> entityLists3 = finalListBeans[0];
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号