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

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

Introduction

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

Prototype

public void parse() throws IOException 

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();
}