Top "Xssf" questions

XSSF provides Java APIs to read / write Microsoft Excel 2007 (OOXML format .xlsx) files.

How to write to an existing file using SXSSF?

I have an .xlsx file with multiple sheets containing different data. Of all the sheets one sheet needs to accommodate …

java excel apache-poi xssf
xssf How to get anything as String

I try to parse an excel file into XML using apache poi xssf. Now having a cell and not knowing …

java excel apache-poi xssf
How to get the max no. of columns filled in an XLSX file using POI?

I know we can get the max number of columns by iterating over all the rows and calling getLastCellNumber on …

apache-poi xls xlsx xssf
java.lang.NoClassDefFoundError: Could not initialize class org.apache.poi.openxml4j.opc.internal.marshallers.ZipPackagePropertiesMarshaller

I am trying to generate Excel using Xssf API because its memory footprint is small. It is working fine in …

excel apache xssf
Apache POI - XSSF: Row.getCell()

I am using XSSF to access the .xlsx format. Extracting row data and cell data is being done by Row.…

apache-poi xssf
How can I get the workbook file name i.e. excel file name

I am working on an existing .xlsx file. Can any one share with me that, how can I get my …

apache-poi xssf
How to get the position/index of a Sheet object in Java Apache POI

In a Java method I am using an Apache POI Sheet (from XSSFWorkbook). I can read the sheet name using …

java apache apache-poi xssf
Why won't Apache POI OPCPackage close() method save/write contents to open writable file?

Using the following code, cell value changes made to my Excel Spreadsheet are not saved: OPCPackage pkg = OPCPackage.open(inputFile); …

java excel apache-poi xssf
Java POI XSSF VLookup formula

I am trying to put simple VLookup formula in my ".xlsx" file using Java and Apache POI. This formula is …

java apache-poi xssf