雜湊Map合併工具類
阿新 • • 發佈:2019-01-29
有兩個雜湊Map,如果要實現Map追加的話,可以使用putAll()方法,不可以使用put()方法,但是如果出現兩個Map有相同的key,但是值不同,這種情況就可以使用這個工具類進行集合合併
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
public class CombineMapUtil {
public static void main(String[] args) {
Map<String,Object> map = new HashMap<String,Object>();
map.put("test1", "1");
map.put("test2", "2");
map.put("test3", "3");
Map<String,Object> plus = new HashMap<String,Object>();
plus.put("test1", "2");
plus.put("plus2", "2");
plus.put("plus3", "3" );
Map<String,Map<String,Object>> testmap = new HashMap<>();
List<Map> list = new ArrayList<Map>();
list.add(map);
list.add(plus);
System.out.println(combineMap(list));
}
public static Map<String,List> combineMap(List<Map> list ) {
Map<String,List> map = new HashMap<>();
for(Map m:list){
Iterator<String> iter= m.keySet().iterator();
while(iter.hasNext()){
String key = iter.next();
if(!map.containsKey(key)){
List tmpList = new ArrayList<>();
tmpList.add(m.get(key));
map.put(key, tmpList);
}else{
map.get(key).add(m.get(key));
}
}
}
return map;
}
}
Console列印:
{test1=[1, 2], plus3=[3], plus2=[2], test2=[2], test3=[3]}