Simple Java Hashtable example

  1. /*
  2.   Simple Java Hashtable example
  3.   This simple Java Example shows how to use Java Hashtable. It also describes how to
  4.   add something to Hashtable and how to retrieve the value added from Hashtable.
  5. */
  6.  
  7. import java.util.Hashtable;
  8.  
  9. public class SimpleHashtableExample {
  10.  
  11. public static void main(String[] args) {
  12. //create object of Hashtable
  13. Hashtable ht = new Hashtable();
  14.  
  15. /*
  16.   Add key value pair to Hashtable using
  17.   Object put(Object key, Object value) method of Java Hashtable class,
  18.   where key and value both are objects
  19.   and can not be null.
  20.   put method returns Object which is either the value previously tied
  21.   to the key or null if no value mapped to the key.
  22.   */
  23.  
  24. ht.put("One", new Integer(1));
  25. ht.put("Two", new Integer(2));
  26.  
  27. /*
  28.   Please note that put method accepts Objects. Java Primitive values CAN NOT
  29.   be added directly to Hashtable. It must be converted to corrosponding
  30.   wrapper class first.
  31.   */
  32.  
  33. //retrieve value using Object get(Object key) method of Java Hashtable class
  34. Object obj = ht.get("One");
  35. System.out.println(obj);
  36.  
  37. /*
  38.   Please note that the return type of get method is Object. The value must
  39.   be casted to the original class.
  40.   */
  41. }
  42. }
  43.  
  44. /*
  45. Output of the program would be
  46. 1
  47. */

Visit Java Example Forums to request Java examples or ask Java questions!
OR
Try out our new Java Search Engine




Suggested Reading

Oracle Magazine
Contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more.
Cost: FREE

View/Subscribe
NASA Tech Briefs
Features exclusive reports of innovations developed by NASA and its industry partners/contractors that can be applied to develop new/improved products and solve engineering or manufacturing problems.
Cost: FREE

View/Subscribe
FierceBiotech IT
Is a free, easy to read weekly email service that brings must read biotech IT news to senior biotech, pharma, and IT executives.
Cost: FREE

View/Subscribe
Simply SQL
Simply SQL is a practical step-by-step guide to writing SQL.
Cost: FREE

View/Subscribe
Simply JavaScript
Packed with full-color examples, Simply JavaScript is all you need to start programming in JavaScript the right way.
Cost: FREE

View/Subscribe
PCMag.com's What's New Now
Lance Ulanoff, Editor in Chief of the PC Magazine Network, brings you this twice-weekly roundup of the latest top tech stories, the best new product reviews, plus special offers from Ziff Davis and its partners.
Cost: FREE

View/Subscribe

Could not find what you are looking for? Search Java Examples




Feel Tired? Read Jokes & Inspirational Stories, Play Games!