Package ch.rabanti.nanoxlsx4j.lowLevel
Class WorkbookReader
java.lang.Object
ch.rabanti.nanoxlsx4j.lowLevel.WorkbookReader
Class representing a reader to decompile a workbook in an XLSX files
- Author:
- Raphael Stoeckli
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
Class for worksheet Mata-data on import -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionPassword hash if availableint
Selected worksheet of the workbookHashmap of worksheet definitions.boolean
isHidden()
Hidden state of the workbookboolean
Lock state of the structural elementsboolean
Lock state of the windowsboolean
Protection state of the workbookvoid
read
(InputStream stream) Reads the XML file form the passed stream and processes the workbook information
-
Constructor Details
-
WorkbookReader
public WorkbookReader()Default constructor
-
-
Method Details
-
getWorksheetDefinitions
Hashmap of worksheet definitions. The key is the worksheet number and the value is a WorksheetDefinition object with name, hidden state and other information- Returns:
- Hashmap of number-name tuples
-
isHidden
public boolean isHidden()Hidden state of the workbook- Returns:
- True if hidden
-
getSelectedWorksheet
public int getSelectedWorksheet()Selected worksheet of the workbook- Returns:
- Index of the worksheet
-
isProtected
public boolean isProtected()Protection state of the workbook- Returns:
- True if protected
-
isLockWindows
public boolean isLockWindows()Lock state of the windows- Returns:
- True if locked
-
isLockStructure
public boolean isLockStructure()Lock state of the structural elements- Returns:
- True if locked
-
getPasswordHash
Password hash if available- Returns:
- Hash as string
-
read
Reads the XML file form the passed stream and processes the workbook information- Parameters:
stream
- Stream of the XML file- Throws:
IOException
- Throws IOException in case of an errorIOException
-