Simple Java HashMap example

  1. /*
  2.   Simple Java HashMap example
  3.   This simple Java Example shows how to use Java HashMap. It also describes how to
  4.   add something to HashMap and how to retrieve the value added from HashMap.
  5. */
  6.  
  7. import java.util.HashMap;
  8.  
  9. public class JavaHashMapExample {
  10.  
  11. public static void main(String[] args) {
  12.  
  13. //create object of HashMap
  14. HashMap hMap = new HashMap();
  15.  
  16. /*
  17.   Add key value pair to HashMap using
  18.   Object put(Object key, Object value) method of Java HashMap class,
  19.   where key and value both are objects
  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. hMap.put("One", new Integer(1));
  25. hMap.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 HashMap. It must be converted to corrosponding
  30.   wrapper class first.
  31.   */
  32.  
  33. //retrieve value using Object get(Object key) method of Java HashMap class
  34. Object obj = hMap.get("One");
  35. System.out.println(obj);
  36.  
  37. /*
  38.   Please note that the return type of get method is an Object. The value must
  39.   be casted to the original class.
  40.   */
  41.  
  42.  
  43. }
  44. }
  45. /*
  46. Output of the program would be
  47. 1
  48. */

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!