Java org.apache.poi.ss.usermodel WorkbookFactory fields, constructors, methods, implement or subclass

Example usage for Java org.apache.poi.ss.usermodel WorkbookFactory fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.poi.ss.usermodel WorkbookFactory.

The text is from its open source code.

Subclass

org.apache.poi.ss.usermodel.WorkbookFactory has subclasses.
Click this link to see all its subclasses.

Constructor

Method

Workbookcreate(boolean xssf)
Create a new empty Workbook, either XSSF or HSSF depending on the parameter
Workbookcreate(POIFSFileSystem fs)
Creates a HSSFWorkbook from the given POIFSFileSystem

Note that in order to properly release resources the Workbook should be closed after use.

Workbookcreate(final DirectoryNode root)
Creates a Workbook from the given DirectoryNode.
Workbookcreate(Object pkg)
Creates a XSSFWorkbook from the given OOXML Package.
Workbookcreate(InputStream inp)
Creates the appropriate HSSFWorkbook / XSSFWorkbook from the given InputStream.
Workbookcreate(File file)
Creates the appropriate HSSFWorkbook / XSSFWorkbook from the given File, which must exist and be readable.
Workbookcreate(File file, String password, boolean readOnly)
Creates the appropriate HSSFWorkbook / XSSFWorkbook from the given File, which must exist and be readable, and may be password protected

Note that in order to properly release resources the Workbook should be closed after use.