码迷,mamicode.com
首页 > 编程语言 > 详细

java 遍历Map并且获取其中的键值

时间:2015-06-09 21:58:50      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:map   string   iterator   遍历   


errCodeMap是要遍历的Map,

Iterator it = errCodeMap.entrySet().iterator();

while(it.hasNext()){
Map.Entry entry = (Entry) it.next();
String key = entry.getKey().toString(); // 返回的对应map的key值
String value = entry.getValue().toString();  // 返回的对应map的value值
}

java 遍历Map并且获取其中的键值

标签:map   string   iterator   遍历   

原文地址:http://blog.csdn.net/nikita_wxb/article/details/46431489

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!