Java

How to use Hashmap in java 8 with examples using netbeans

HashMap Using in java 8

how to use HashMap in Java

HashMap is a type of Collection in Java, its function is almost the same as ArrayList, namely to organize and display data. HashMap uses key-value paired data types to organize its data. What distinguishes HashMap from ArrayList is that in HashMap, we do not input data sequentially, such as ArrayList, namely 0, 1, 2, 3, …. etc. . , so we use a mapping or MAP, based on a key as an index that we can fill freely and be a unique element that is different from each other, to access the value. So in this article, we will learn how to write a simple Java program using a HashMap as the collection.




Using HashMap in Java

In the following example program, we will create some data that we will enter in the HashMap, the data has its own key and value, and the sample data that we will create is as follows:

Key Value
Name Fawad khan
Age 27
Salary 100000
Address Pakistan

in the table above, the key is used as a key to display or access the value, the key in the HashMap you can fill in freely, this is what distinguishes the HasMap from the ArrayList, if the ArrayList displays the value, we need to access the index position, but in the HashMap, to access the value/value, we need to call the key.

In addition to the String data type, we can also use other Objects, such as List or Set. To be used as the Value.

Now that you know about the key and value functions, let’s try to discuss implementing HashMap in Java Programs. A simple example of using HashMap in java is as follows:



Example: how to use keys and values in java hashmap:

 

Output:

how to Use HashMap in Java

Explanation:

To declare a HashMap object, the prefix syntax is as follows:

Key: Used as a Key To Call Value.

Value: These are the contents of the value that will be called by the key.

In the program, I create an initial object like this HashMap<String, String>  which means, the Key and Value have a String data type, then to input data, you can use the put() function filled with the Key and Value, then to access the value, you can use the get() function inside the Key input to access the desired value.

You can differentiate the data types in Key and Value, for example<Integer, String>, <String, Integer>,  <Integer, Integer>,  <Boolean, Double>, etc .



Example: how to display all data at once in java hashmap:

In the previous program, we display data one by one using System.out.println(), to display all data at once, you are like in Array, you can use a for-each statement.

To display all data at once in java hashmap an example program is as follows:

 

Output:

 

how to Use HashMap in Java

 

Program Explanation:

First of all, I import the library from java.util.Map, which is used to create a MAP on HashMap.

Here I use a for each loop, in the condition to display the Key and Value, I use Data.entrySet() , in the static class Map.Entry with a map object.

Then display all values ​​using the statement

getKey is used to display the key and getValue() is used to display the Value.

If you only want to display the Key, change the line of code in the for-each to something like this:

Output:

how to Use HashMap in Java

And if you want only the value to be displayed, change the code to something like this:

Output:

how to Use HashMap in Java

Print Key and Value according to their respective data types, the values() and keySet() methods are used to calculate the number or size of the key and value.

In addition to String, Integer, Boolean data types, etc. We can also store values ​​with other Objects like List and Set . For that see the following program example.



Example: how to store list and set values in java hashmap:

Output:

how to Use HashMap in Java

Explanation:

In the program,  first, i create an object, for a group of keys, by writing the prefix

Then I use a Key with a String data type, and a Value inside a List with a String data type as well.

Next, i create an object from ArrayList to enter the values ​​or names of the games, by writing the code List<String>Game = new ArrayList<>();

Then input the data by using the add() function;

Next, I input data from the Map object, where “game name” is used as the key then the data in the game object is used as the value.

Then we display the data key and value, in System.out.println();

Related Articles

Leave a Reply

Your email address will not be published. Required fields are marked *

Back to top button