![]() |
VOOZH | about |
Apache POI is an open-source java library to create and manipulate various file formats based on Microsoft Office. Using POI, one should be able to perform create, modify and display/read operations on the following file formats. For Example, Java doesnβt provide built-in support for working with excel files, so we need to look for open-source APIs for the job. In this article, we are going to discuss how to write the data from an Excel file into a HashMap in java using Apache POI. HashMap is a type of collection in Java that contains a key-value pair for storing the data. Apache POI is an open-source Java library for manipulating Microsoft documents like Excel, word, etc.
To work with this example, we need the following:
For creating a Maven project refer to this How to Create a Selenium Maven Project with Eclipse to Open Chrome Browser?
Let's discuss this with an example, now create an Excel file with some data on it, we have to read the data from this file and write it into the HashMap. Let's see this Example with hands-on coding.
After executing the above code we will get all the data in the Excel stored in HashMap and it is printed.