1.Basic java example program to check particular value exist in hashtable
Output:
- boolean contains(Object value) This method used to check particular value exist in hashtable
- package com.CheckElelemtHashtable;
- import java.util.Hashtable;
- import java.util.Enumeration;
- public class HashtableExample{
- public static void main(String[] args) {
- //create Hashtable object
- Hashtable<String,String> hashtable = new Hashtable<String,String>();
- //add key value pairs to Hashtable
- hashtable.put("1","Java Interview Questions");
- hashtable.put("2","Java Interview Programs");
- hashtable.put("3","Concept and exampe program");
- hashtable.put("4","Concept and interview Questions");
- hashtable.put("5","Java Quiz");
- hashtable.put("6","Real time examples");
- /*
- To check whether a particular value exists in Hashtable we need to use
- boolean containsKey(Object value) method of Hashtable class.
- if the Hashtable contains mapping for specified value It returns true
- otherwise returns false.
- */
- boolean isExists = hashtable.contains("Java Quiz");
- System.out.println("Java Quiz exists in Hashtable ? : " + isExists);
- System.out.println("Hashtable values : ");
- Enumeration e=hashtable.elements();
- // display search result
- while (e.hasMoreElements()) {
- System.out.println(e.nextElement());
- }
- }
- }
Output:
- Java Quiz exists in Hashtable ? : true
- Hashtable values :
- Real time examples
- Java Quiz
- Concept and interview Questions
- Concept and exampe program
- Java Interview Programs
- Java Interview Questions
Bagikan
Check particular value exist in hashtable
4/
5
Oleh
Kris Kimcil