List of usage examples for org.apache.poi.xssf.binary XSSFBSheetHandler parse
public void parse() throws IOException
From source file:org.apache.tika.parser.microsoft.ooxml.XSSFBExcelExtractorDecorator.java
License:Apache License
private void processSheet(SheetContentsHandler sheetContentsExtractor, XSSFBCommentsTable comments, XSSFBStylesTable styles, XSSFBSharedStringsTable strings, InputStream sheetInputStream) throws IOException, SAXException { XSSFBSheetHandler xssfbSheetHandler = new XSSFBSheetHandler(sheetInputStream, styles, comments, strings, sheetContentsExtractor, formatter, false); xssfbSheetHandler.parse(); }