美文网首页
JSONArray转以某字段为key的Map

JSONArray转以某字段为key的Map

作者: 何佳阳 | 来源:发表于2019-12-19 21:02 被阅读0次

Map collect = menuQueue.stream().collect(

Collectors.toMap(

i -> {

JSONObject a= (JSONObject)i;

                    String k = a.getString("index");

                    return k;

                    },

                Function.identity()

)

);

相关文章

网友评论

      本文标题:JSONArray转以某字段为key的Map

      本文链接:https://www.haomeiwen.com/subject/rupvnctx.html