Package ch.rabanti.nanoxlsx4j.lowLevel
Class XlsxReader
java.lang.Object
ch.rabanti.nanoxlsx4j.lowLevel.XlsxReader
Class representing a reader to decompile XLSX files
- Author:
- Raphael Stoeckli
-
Constructor Summary
ConstructorsConstructorDescriptionXlsxReader
(InputStream stream, ImportOptions options) Constructor with stream and import options as parameterXlsxReader
(String path, ImportOptions options) Constructor with file path and import options as parameter -
Method Summary
Modifier and TypeMethodDescriptionResolves the workbook with all worksheets from the loaded filevoid
read()
Reads the XLSX file from a file path or a file stream
-
Constructor Details
-
XlsxReader
Constructor with stream and import options as parameter- Parameters:
stream
- Stream of the XLSX file to loadoptions
- Import options to override the automatic approach of the reader. SeeImportOptions
for information about import options
-
XlsxReader
Constructor with file path and import options as parameter- Parameters:
path
- File path of the XLSX file to loadoptions
- Import options to override the automatic approach of the reader. SeeImportOptions
for information about import options
-
-
Method Details
-
read
Reads the XLSX file from a file path or a file stream- Throws:
IOException
- Throws IOException in case of an errorIOException
-
getWorkbook
Resolves the workbook with all worksheets from the loaded file- Returns:
- Workbook object
-