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

Java------遍历Map<k,v>的方法

时间:2017-04-24 23:20:18      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:try   override   entryset   his   password   throw   get   extend   hashmap   

1.

public class MapAction extends ActionSupport{
    private Map<String, User> map = new HashMap<>();

    public Map<String, User> getMap() {
        return map;
    }

    public void setMap(Map<String, User> map) {
        this.map = map;
    }
    
    @Override
    public String execute() throws Exception {
        //方法一:通过Entry遍历<迭代Entry>
        for(Entry<String, User> entry : map.entrySet()) {
            System.out.println(entry.getKey()+":"+entry.getValue().getUsername());
        }
        //方法二:通过Set集合遍历<迭代Set>
        for(String key: map.keySet()){
            System.out.println(key + ":" + map.get(key).getPassword());
        }
        
        return SUCCESS;
    }
    
}

 

Java------遍历Map<k,v>的方法

标签:try   override   entryset   his   password   throw   get   extend   hashmap   

原文地址:http://www.cnblogs.com/tianhengblogs/p/6759188.html

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