HSSFSheet
HSSFSheet is a class in the Apache POI library that represents a worksheet in an HSSF workbook, the component that handles Excel 97-2003 binary files (.xls). It is a concrete implementation of the Sheet interface used by applications to interact with the contents of a sheet in an HSSFWorkbook.
From an application perspective, HSSFSheet provides access to rows and cells. You can create and retrieve rows
In addition to basic data access, HSSFSheet supports sheet-level properties and layout features, including setting default
Under the hood, HSSFSheet interacts with HSSFWorkbook and BIFF8 records; it is designed for the older binary
HSSFSheet is used when working with .xls files in the POI ecosystem. It is part of the