Read Excel Content Using Apache POI in Java

A detailed guide on reading Excel file content in Java using the Apache POI library. This article provides sample code, a detailed explanation of each line, and steps for installing the necessary libraries.

The Java code utilizes the Apache POI library to read data from an Excel file. We will open the file, read each row and column, and print the content to the console.

import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;

public class ReadExcelExample {
    public static void main(String[] args) {
        try {
            // Path to the Excel file to be read
            FileInputStream file = new FileInputStream(new File("sample.xlsx"));

            // Create a workbook object from the Excel file
            XSSFWorkbook workbook = new XSSFWorkbook(file);

            // Retrieve the first sheet from the workbook
            XSSFSheet sheet = workbook.getSheetAt(0);

            // Iterate through each row in the sheet
            for (Row row : sheet) {
                // Iterate through each cell in the row
                for (Cell cell : row) {
                    // Print the value of the cell
                    switch (cell.getCellType()) {
                        case STRING:
                            System.out.print(cell.getStringCellValue() + "\t");
                            break;
                        case NUMERIC:
                            System.out.print(cell.getNumericCellValue() + "\t");
                            break;
                        case BOOLEAN:
                            System.out.print(cell.getBooleanCellValue() + "\t");
                            break;
                        default:
                            System.out.print("Unknown" + "\t");
                    }
                }
                System.out.println();
            }
            workbook.close();
            file.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

Detailed explanation

  1. FileInputStream file = new FileInputStream(new File("sample.xlsx"));: Opens the Excel file from the specified path.
  2. XSSFWorkbook workbook = new XSSFWorkbook(file);: Creates a workbook object from the Excel file.
  3. XSSFSheet sheet = workbook.getSheetAt(0);: Retrieves the first sheet from the workbook.
  4. for (Row row : sheet): Iterates through all the rows in the sheet.
  5. for (Cell cell : row): Iterates through each cell in the row.
  6. switch (cell.getCellType()): Checks the data type of the cell and prints the corresponding value.
  7. workbook.close() and file.close(): Closes the workbook and file after processing.

System Requirements

  • Java version: JDK 8 or later
  • Apache POI library: Version 5.2.3 or newer

How to install the libraries needed to run the Java code above

  1. Download the Apache POI JAR files from the official website: https://poi.apache.org/download.html
  2. Add the JAR files to your Java project's classpath.

Tips

  • Use try-with-resources to ensure the file is automatically closed after processing.
  • Verify the Excel file format (XLSX or XLS) before attempting to read it.


Related

How to open Notepad using Java

This guide explains how to open the Notepad application using Java by utilizing `Runtime.getRuntime().exec()`. It demonstrates how Java can interact with the system to launch external programs.
How to DELETE data from a MySQL database using Java

A guide on how to use Prepared Statements in Java to delete data from a table in a MySQL database safely and effectively.
How to Post Data to API Using Java

This article guides you on how to post data to an API using the POST method in Java, utilizing the HttpURLConnection and org.json library to handle JSON data.
Writing data to an Excel file using Java

A guide on how to write data to an Excel file using Java, leveraging the Apache POI library for effective and simple manipulation of Excel files.
How to use Selenium to inject JavaScript code into a website on Chrome

A guide on how to use Selenium in Java to inject JavaScript code into a webpage on the Chrome browser. This article will help you understand how to interact with the DOM via JavaScript.
Generating Captcha in Java

A comprehensive guide on how to create a Captcha in Java to protect your application from automated activities and enhance security.
How to SELECT data from a MySQL database using Java

A guide on how to use Prepared Statements in Java to query data from a table in a MySQL database safely and effectively.
Guide to creating a multi-image upload form in Java

A step-by-step guide on how to create a multi-image upload form using Java with Spring Boot and the `Commons FileUpload` library. This tutorial covers setup and code examples.
How to pass an Authentication Header Token when POSTing data to an API in Java

A guide on how to pass an authentication token in the Authorization Header when sending POST requests to an API using Java. The article provides sample Java code and detailed explanations.
JSON Web Token (JWT) Authentication in Java

This guide demonstrates how to use JSON Web Token (JWT) to authenticate users in a Java application. Specifically, we'll use JWT to secure APIs in a Spring Boot application, covering token generation, validation, and securing endpoints.

main.add_cart_success