map遍历方法

Posted kabibo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了map遍历方法相关的知识,希望对你有一定的参考价值。

java中遍历MAP的几种方法
Java代码
Map<String,String> map=new HashMap<String,String>();   
map.put("username", "qq");   
map.put("passWord", "123");   
map.put("userID", "1");   
map.put("email", "[email protected]");  
Map<String,String> map=new HashMap<String,String>();
map.put("username", "qq");
map.put("passWord", "123");
map.put("userID", "1");
map.put("email", "[email protected]");
第一种用for循环
Java代码

for(Map.Entry<String, String> entry:map.entrySet()){   
     System.out.println(entry.getKey()+"--->"+entry.getValue());   
}  
for(Map.Entry<String, String> entry:map.entrySet()){
          System.out.println(entry.getKey()+"--->"+entry.getValue());
}

第二种用迭代
Java代码

Set set = map.entrySet();        
Iterator i = set.iterator();        
while(i.hasNext()){     
     Map.Entry<String, String> entry1=(Map.Entry<String, String>)i.next();   
     System.out.println(entry1.getKey()+"=="+entry1.getValue());   
}  
Set set = map.entrySet();    
Iterator i = set.iterator();    
while(i.hasNext()){ 
    Map.Entry<String, String> entry1=(Map.Entry<String, String>)i.next();
    System.out.println(entry1.getKey()+"=="+entry1.getValue());
}
用keySet()迭代
Java代码

Iterator it=map.keySet().iterator();   
while(it.hasNext()){   
     String key;   
     String value;   
     key=it.next().toString();   
     value=map.get(key);   
     System.out.println(key+"--"+value);   
}  
Iterator it=map.keySet().iterator();
while(it.hasNext()){
    String key;
    String value;
    key=it.next().toString();
    value=map.get(key);
    System.out.println(key+"--"+value);
}

用entrySet()迭代
Java代码

Iterator it=map.entrySet().iterator();          
System.out.println( map.entrySet().size());   
String key;          
String value;   
while(it.hasNext()){   
        Map.Entry entry = (Map.Entry)it.next();          
        key=entry.getKey().toString();          
        value=entry.getValue().toString();          
        System.out.println(key+"===="+value);                    
}  

以上是关于map遍历方法的主要内容,如果未能解决你的问题,请参考以下文章

java中map的常用遍历方法都有哪些?

Groovymap 集合 ( map 集合遍历 | 使用 map 集合的 find 方法遍历 map 集合 | 代码示例 )

对象遍历,多层嵌套数组,for in方法对象遍历,map方法数组遍历

Thymeleaf遍历Map

Map补充:map遍历方法和computeIfAbsent()方法

遍历Map的三种方法