List of usage examples for org.apache.poi.xssf.eventusermodel XSSFReader getStylesData
public InputStream getStylesData() throws IOException, InvalidFormatException
From source file:ec.util.spreadsheet.poi.FastPoiBook.java
License:EUPL
private static ByteSource newStylesDataSupplier(final XSSFReader reader) { return new ByteSource() { @Override// w w w . ja va2s. c o m public InputStream openStream() throws IOException { try { return reader.getStylesData(); } catch (InvalidFormatException ex) { throw new IOException(ex); } } }; }