Sto tentando di eseguire un'iterazione tramite un elenco di chiavi da una tabella hash utilizzando l'enumerazione, tuttavia continuo a ricevere un NoSuchElementException sull'ultima chiave nell'elenco?iterando attraverso l'enumerazione delle chiavi hastable genera l'errore NoSuchElementException
Hashtable<String, String> vars = new Hashtable<String, String>();
vars.put("POSTCODE","TU1 3ZU");
vars.put("EMAIL","[email protected]");
vars.put("DOB","02 Mar 1983");
Enumeration<String> e = vars.keys();
while(e.hasMoreElements()){
System.out.println(e.nextElement());
String param = (String) e.nextElement();
}
uscita della console:
EMAIL POSTCODE
Exception in thread "main" java.util.NoSuchElementException: Hashtable Enumerator at java.util.Hashtable$Enumerator.nextElement(Unknown Source) at testscripts.webdrivertest.main(webdrivertest.java:47)
Questa sembra essere la prima risposta. È la risposta convalidata o mi manca qualcosa? –
@PascalGanaye Questa risposta ha mancato l'errore contenuto nella domanda. – Svish