XSSFSheet
XSSFSheet is a class in the Apache POI library that represents a single worksheet within an XSSF workbook, the implementation POI uses for the OOXML-based .xlsx format. It is the XSSF-specific counterpart to the HSSFSheet class used for .xls files. XSSFSheet implements the Sheet interface and is typically accessed through an XSSFWorkbook. A sheet contains rows, which in turn contain cells, and it provides mechanisms to create, retrieve, and remove these rows and cells, as well as to manage sheet-wide properties such as column widths, merged regions, and print settings.
Common usage patterns involve creating a workbook, adding a sheet with workbook.createSheet("Name"), then creating rows with
Under the hood, XSSFSheet delegates to XSSFRow and XSSFCell, which map to the underlying OOXML structures (such
Compared with HSSFSheet, XSSFSheet targets the newer XLSX format and supports larger data capacity and OOXML-specific