标签:
Iterator<Entry<String,Integer>> it = exsitMap.entrySet().iterator();
while(it.hasNext()){
Entry<String,Integer> entry =it.next();
ActivityDetail a=new ActivityDetail();
a.setActivityType(entry.getValue());
list.add(a);
}
标签:
原文地址:http://www.cnblogs.com/jcz1206/p/5764171.html