Remove value from Java Hashtable example

  1. /*
  2.   Remove value from Java Hashtable example
  3.   This Java Example shows how to remove a key value pair from Hashtable object using
  4.   remove method.
  5. */
  6.  
  7. import java.util.Enumeration;
  8. import java.util.Hashtable;
  9.  
  10. public class RemoveValueFromHashtableExample {
  11.  
  12. public static void main(String[] args) {
  13.  
  14. //create Hashtable object
  15. Hashtable ht = new Hashtable();
  16.  
  17. //add key value pairs to Hashtable
  18. ht.put("1","One");
  19. ht.put("2","Two");
  20. ht.put("3","Three");
  21.  
  22. /*
  23.   To remove a key value pair from Hashtable use
  24.   Object remove(Object key) method of Hashtable class.
  25.   It returns either the value mapped with the key or null if no value
  26.   was mapped.
  27.   */
  28.  
  29. Object obj = ht.remove("2");
  30. System.out.println(obj + " Removed from Hashtable");
  31.  
  32. //print remaining Hashtable values
  33. Enumeration e = ht.elements();
  34.  
  35. //iterate through Hashtable values Enumeration
  36. while(e.hasMoreElements())
  37. System.out.println(e.nextElement());
  38. }
  39. }
  40.  
  41. /*
  42. Output would be
  43. Two Removed from Hashtable
  44. Three
  45. One
  46. */

Post new comment

To combat spam, please enter the code in the image.


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!