Class WorkbookReader

java.lang.Object
ch.rabanti.nanoxlsx4j.lowLevel.WorkbookReader

public class WorkbookReader extends Object
Class representing a reader to decompile a workbook in an XLSX files
Author:
Raphael Stoeckli
  • Constructor Details

    • WorkbookReader

      public WorkbookReader()
      Default constructor
  • Method Details

    • getWorksheetDefinitions

      public Map<Integer,WorkbookReader.WorksheetDefinition> 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

      public String getPasswordHash()
      Password hash if available
      Returns:
      Hash as string
    • read

      public void read(InputStream stream) throws IOException, IOException
      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 error
      IOException