某些场景需要一个key值下面对应多个值,但是map的一个key值只对应一个value值,由于hashmap相同的key值,第二个put进去会覆盖第一个的值,所以为了解决这一问题:所以用list存
如下:
代码语言:javascript复制List<Map<String, List<RecommendationListBO>>> hashList = new ArrayList<>();
Iterator<Map.Entry<String, List<RecommendationListBO>>> iterator = recommendationHashMap.entrySet().iterator();
Map.Entry<String, List<RecommendationListBO>> entry;
while (iterator.hasNext()) {
entry = iterator.next();
// 往newMap中放入新的Entry
HashMap<String, List<RecommendationListBO>> newMap = new LinkedHashMap<>();
newMap.put(entry.getKey().split(",")[0], entry.getValue());
hashList.add(newMap);
}
每次new一个新的map,add到map的list里面。思路大概是这样的。