Los Hashtables ...
Código:
No me ejecuta el While, no se porqué, agradecería mucho su ayuda. public static void main(String[] args) { Hashtable h = new Hashtable(); Enumeration e = h.keys(); h.put("a12", "pepito"); h.put("a13", "juan"); h.put("a14", "nena"); String clave,valor; System.out.println("hola"); while(e.hasMoreElements()) { clave = (String)e.nextElement(); valor = (String)h.get(clave); System.out.println(valor); } }