摘要: for(Map.Entry<String, List> entry : map.entrySet()) { System.out.println(entry.getKey()); List ls=entry.getValue(); }Iterator it = map.keySet().iterator();while(it.hasNext()){ String key = (String) it.next(); List value = map.get(key);} 阅读全文
posted @ 2013-04-27 15:22 双面煎蛋 阅读(311) 评论(0) 推荐(0) 编辑