Collection <List<DeliveryOrderPo>>转List
时间: 2023-06-04 08:07:44 浏览: 112
MyBatis传入集合 list 数组 map参数的写法
5星 · 资源好评率100%
<DeliveryOrderPo>,有什么好的解决方法吗?
您好!关于您的问题,可以使用Java 8的Stream Api来进行转换。具体代码如下:
```
Collection<List<DeliveryOrderPo>> collection = new ArrayList<>();
List<DeliveryOrderPo> list = collection.stream()
.flatMap(Collection::stream)
.collect(Collectors.toList());
```
通过flatMap方法,将多个List合并成一个List,并使用collect方法进行类型转换即可。希望可以帮到您!
阅读全文