I am trying to iterate through a list of keys from a hash table using enumeration however I keep getting a NoSuchElementException at the last key in list?
Hasht
You are calling nextElement twice. Refactor like this:
while(e.hasMoreElements()){ String param = (String) e.nextElement(); System.out.println(param); }