java List<> List
- 仔细看你会懂得哦.不懂可以try一下吗。 你说呢。
- 其实这里都是基础,Map 的 key 是唯一的这么一个知识点。
- 我们要打好基础各位大佬。
List<Map<String, Object>> listMap = new ArrayList<>();
Map<String, Map> msp = new HashMap<>();
for(int i = approveRecordList.size()-1 ; i>=0; i--){
Map map = approveRecordList.get(i);
String id = (String)map.get("ClueID");
map.remove("ClueID");
msp.put(id, map);
}
Set<String> mspKey = msp.keySet();
for(String key: mspKey){
Map newMap = msp.get(key);
newMap.put("ClueID", key);
listMap.add(newMap);
}