All the methods that aren't defined in the Workbook interface. Have a look for yourself: Workbook interface: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/usermodel/Workbook.java?view=markup HSSFWorkbook implementation: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/usermodel/HSSFWorkbook.java?view=markup XSSFWorkbook implementation: http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFWorkbook.java?view=markup
On Sat, Oct 31, 2015 at 4:50 AM, Rohit Cha <[email protected]> wrote: > What are the additional features that aren't available in the Workbook > interface > > On Fri, Oct 30, 2015 at 9:14 PM, Javen O'Neal <[email protected]> > wrote: > > > If you know you're reading an Excel 2007 file, using the XSSFWorkbook > > constructor means having an XSSFWorkbook object, which has some > additional > > features that aren't available in the Workbook interface. If you go the > > WorkbookFactory.create route, you can always cast to an XSSFWorkbook. > > > > Likewise, you could do the same with HSSFWorkbooks for Excel 2003 files. > > > > The Quick Guide does a pretty good job showing you how to use POI. > > https://poi.apache.org/spreadsheet/quick-guide.html > > On 29 Oct 2015 9:44 p.m., "Rohit Cha" <[email protected]> wrote: > > > > > What is advantage of using HSSF for reading exel(2007) files over > > > WorkFactory.create() > > > > > >
