XSSF
XSSF is a component of the Apache POI project that provides a Java API for reading and writing Microsoft Excel 2007 and later workbook formats based on the Office Open XML (OOXML) standard. It is the POI portion that handles .xlsx files, complementing HSSF, which works with the older binary .xls format. The core API classes in XSSF include XSSFWorkbook, XSSFSheet, XSSFRow, and XSSFCell, which mirror the structure of an Excel workbook.
XSSF relies on the Open Packaging Conventions to store content in a ZIP container and uses OOXML
For performance with large workbooks, POI provides SXSSF, a streaming API built on XSSF that reduces memory
XSSF is widely used in Java applications for generating reports, processing existing spreadsheets, or templating Excel