Java Hashtable get() Method Last Updated : 19 May, 2025 Comments Improve Suggest changes Like Article Like Report The Hashtable.get() method is a built-in method of the java.util.Hashtable class. This method is used to retrieve or fetch the value mapped by a particular key mentioned in the parameter. It returns NULL when the table contains no such mapping for the key. In this article, we will learn about the Hashtable.get() method in Java with its syntax and practical examples.Syntax of Hashtable get() MethodHashtable.get(Object key);Parameters: The method takes one parameter, "key" of object type and refers to the key whose associated value is supposed to be fetched.Return Value: The method returns the value associated with the "key" in the parameter.When to Use the get() Method?We use get() method,To retrieve values stored against a key in the hashtable.To check if a specific key exists by evaluating if the returned value is null or not.Examples of Java Hashtable get() MethodExample 1: In this example, we create a hashtable with integer keys and string values. We insert key-value pairs and retrieve values using the get() method. Java // Java program to illustrate Hashtable get() method import java.util.*; public class Geeks { public static void main(String[] args) { // Create an empty Hashtable Hashtable<Integer, String> ht = new Hashtable<>(); // Insert key-value pairs into the hashtable ht.put(10, "Geeks"); ht.put(15, "4"); ht.put(20, "Geeks"); ht.put(25, "Welcomes"); ht.put(30, "You"); System.out.println("Initial Table is: " + ht); // Retrieve values by keys System.out.println("The Value for key 25 is: " + ht.get(25)); System.out.println("The Value for key 10 is: " + ht.get(10)); } } OutputInitial Table is: {10=Geeks, 20=Geeks, 30=You, 15=4, 25=Welcomes} The Value for key 25 is: Welcomes The Value for key 10 is: Geeks Example 2: Here, we create a hashtable with string keys and integer values. Java // Java program to demonstrate Hashtable get() method import java.util.*; public class Geeks { public static void main(String[] args) { // Create an empty Hashtable Hashtable<String, Integer> ht = new Hashtable<>(); // Add entries to the Hashtable ht.put("Geeks", 10); ht.put("4", 15); ht.put("Geeks", 20); ht.put("Welcomes", 25); ht.put("You", 30); System.out.println("Initial table is: " + ht); // Retrieve values by keys System.out.println("The Value for key Geeks is: " + ht.get("Geeks")); System.out.println("The Value for key You is: " + ht.get("You")); } } OutputInitial table is: {You=30, Welcomes=25, 4=15, Geeks=20} The Value for key Geeks is: 20 The Value for key You is: 30 Important Points:If the key does not exist in the hashtable, get() returns null.Duplicate keys are not allowed. If you insert a value with an existing key, it overwrites the previous value.Note: The same operation can be performed with any type of variation and combination of different data types. Comment More infoAdvertise with us Next Article Java Hashtable isEmpty() Method chinmoy lenka Follow Improve Article Tags : Java Java-Collections Java-HashTable Practice Tags : JavaJava-Collections Similar Reads Hashtable in Java Hashtable class, introduced as part of the Java Collections framework, implements a hash table that maps keys to values. Any non-null object can be used as a key or as a value. To successfully store and retrieve objects from a hashtable, the objects used as keys must implement the hashCode method an 12 min read HashTable forEach() method in Java with Examples The forEach(BiConsumer) method of Hashtable class perform the BiConsumer operation on each entry of hashtable until all entries have been processed or the action throws an exception. The BiConsumer operation is a function operation of key-value pair of hashtable performed in the order of iteration. 2 min read Hashtable computeIfAbsent() method in Java with Examples The computeIfAbsent(Key, Function) method of Hashtable class which allows you to compute value of a mapping for specified key if key is not already associated with a value (or is mapped to null). If mapping function of this method returns null, then no mapping is recorded. If the remapping function 2 min read HashTable putIfAbsent() method in Java with Examples The putIfAbsent(Key, value) method of Hashtable class which allows to map a value to a given key if given key is not associated with a value or mapped to null. A null value is returned if such key-value set is already present in the HashMap. Syntax: public V putIfAbsent(K key, V value) Parameters: T 2 min read Java Hashtable put() Method The Hashtable.put() method is a part of java.util package. This method is used to insert a mapping into a table. This means we can insert a specific key and the value it maps to into a particular table. If an existing key is passed, then the previous value gets replaced by the new value. If a new pa 2 min read Java Hashtable get() Method The Hashtable.get() method is a built-in method of the java.util.Hashtable class. This method is used to retrieve or fetch the value mapped by a particular key mentioned in the parameter. It returns NULL when the table contains no such mapping for the key. In this article, we will learn about the Ha 3 min read Java Hashtable isEmpty() Method The Hashtable.isEmpty() method is a built-in method of the java.util.Hashtable class. This method is used to check if the table is empty or not. The method returns true, if no key-value pair or mapping is present in the table, else it returns false.Syntax of Hashtable isEmpty() Methodhash_table.isEm 2 min read Hashtable size() Method in Java The java.util.Hashtable.size() method of Hashtable class is used to get the size of the table which refers to the number of the key-value pair or mappings in the Table. Syntax: Hash_Table.size() Parameters: The method does not take any parameters. Return Value: The method returns the size of the tab 2 min read Hashtable remove() Method in Java The java.util.Hashtable.remove() is an inbuilt method of Hashtable class and is used to remove the mapping of any particular key from the table. It basically removes the values for any particular key in the Table.Syntax: Hash_Table.remove(Object key) Parameters: The method takes one parameter key wh 2 min read Hashtable keys() Method in Java As we all know enumeration defines java class type so do enumerations can have constructors, methods, and instance variables. The java.util.Hashtable.keys() method of Hashtable class in Java is used to get the enumeration of the keys present in the hashtable. Illustration: Syntax: public Enumeration 2 min read Like