Class SharedStringsReader

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

public class SharedStringsReader extends Object
Class representing a reader for the shared strings table of XLSX files
Author:
Raphael Stoeckli
  • Constructor Details

    • SharedStringsReader

      public SharedStringsReader(ImportOptions importOptions)
      Constructor with parameters
      Parameters:
      importOptions - Import options instance
  • Method Details

    • hasElements

      public boolean hasElements()
      Gets whether the workbook contains shared strings
      Returns:
      True if at least one shared string object exists in the workbook
    • getString

      public String getString(int index)
      Gets the value of the shared string table by its index
      Parameters:
      index - Index of the stared string entry
      Returns:
      Determined shared string value. Returns null in case of an invalid index
    • read

      public void read(InputStream stream) throws IOException, IOException
      Reads the XML file form the passed stream and processes the shared strings table
      Parameters:
      stream - Stream of the XML file
      Throws:
      IOException - Throws IOException in case of an error
      IOException