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
Each time you do e.nextElement() you skip one. So you skip two elements in each iteration of your loop.
e.nextElement()