码迷,mamicode.com
首页 > 编程语言 > 详细

java8的List

时间:2019-10-05 10:23:33      阅读:70      评论:0      收藏:0      [点我收藏+]

标签:long   array   value   tst   etl   code   设备   filter   style   

1.把一个存对象的List或者JSONArray,取出对象的一个属性作为key,一个属性作为value,最终转化为Map

List为dtoList:
List里的对象:
{
    "gmtModified": 1568098905000,
    "builtin": 1,
    "name": "生产设备",
    "description": "生产设备",
    "id": 2526,
    "gmtCreate": 1568098905000,
    "multiVersion": 0
}
取出name作为key,id作为value
获取上述转化的Map:
if (CollectionUtils.isNotEmpty(dtoList)) {
    Map<String, Long> result = dtoList.stream().filter(
            dto -> builtinNames.contains(((JSONObject) dto).getString("name"))).collect(Collectors.toMap(
            dto -> ((JSONObject) dto).getString("name"),
            dto -> ((JSONObject) dto).getLong("id")
    ));

 

2.

java8的List

标签:long   array   value   tst   etl   code   设备   filter   style   

原文地址:https://www.cnblogs.com/big-cut-cat/p/11624013.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!