Like HashMap, Hashtable stores key/value pairs in a hash table. When using aHashtable, you specify an object that is used as a key, and the value that you want linked to that key. The key is then hashed, and the resulting hash code is used as the index at which the value is stored within the table.
Program to implement Hashtable
Developer: Abhishek Nandakumar
Licence: OpenSource
Platform/Language: Java
Download