En esta breve entrada vamos a explicar como recorrer un objeto “java.util.HashMap” de Java. Para ello únicamente deberemos obtener un objeto “java.util.Iterator” e ir recorriendo cada elemento en un bucle ‘while':
1 2 3 4 5 6 7 8 9 10 11 12 13 |
HashMap datos = new HashMap(); // Añadimos datos a nuestro hashMap datos.put("Nombre","David"); datos.put("Apellido1","Otero"); datos.put("Apellido2","Gutiérrez"); // Recorremos el hashMap y mostramos por pantalla el par valor y clave Iterator it = datos.entrySet().iterator(); while (it.hasNext()) { Map.Entry e = (Map.Entry)it.next(); System.out.println(e.getKey() + " " + e.getValue()); } |
Deja tu comentario