Example usage for org.apache.poi.xssf.binary XSSFBSheetHandler XSSFBSheetHandler

List of usage examples for org.apache.poi.xssf.binary XSSFBSheetHandler XSSFBSheetHandler

Introduction

In this page you can find the example usage for org.apache.poi.xssf.binary XSSFBSheetHandler XSSFBSheetHandler.

Prototype

public XSSFBSheetHandler(InputStream is, XSSFBStylesTable styles, XSSFBCommentsTable comments,
            SharedStrings strings, XSSFSheetXMLHandler.SheetContentsHandler sheetContentsHandler,
            DataFormatter dataFormatter, boolean formulasNotResults) 

Source Link

Usage

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();/*from  w w  w.  j a v a  2s  . c  om*/
}