Implementing Excel Import and Export with Apache POI
In many business application developments, there's often a need to implement Excel import and export functionality. This article provides a comprehensive guide on how to accomplish this using Apache POI, a popular Java library for working with Microsoft Office documents.
Apache POI Overview
Microsoft Excel has long been a preferred tool for dat ...
Posted on Sat, 12 Sep 2026 16:07:26 +0000 by lesmith
Efficient Large-Scale Excel Data Import in Java Applications
Handling Bulk Excel Data Ingestion with Java
When building enterprise applications, developers often encounter the need to process large datasets stored in Excel files. Directly loading such data into memory using conventional methods can lead to performance degradation or out-of-memory errors. This article explores an optimized approach for im ...
Posted on Sun, 21 Jun 2026 17:30:49 +0000 by ngng
Efficient Excel Automation with Apache POI: Writing, Parsing, and Scaling Workloads
Core Abstractions and Format Distinctions
Apache POI models spreadsheet documents through four hierarchical interfaces: Workbook (the complete file), Sheet (individual tabs), Row, and Cell. When targeting legacy binary specifications (.xls), the HSSF engine is utilized. For contemporary XML-based workbooks (.xlsx), the XSSF model applies. A cri ...
Posted on Thu, 14 May 2026 03:48:25 +0000 by aruns