Related questions
Apache POI error loading XSSFWorkbook class
I'm trying to write a program that works with Excel docs, but the HSSF format is too small for my requirements. I'm attempting to move to XSSF, but I keep getting errors when trying to use it.
I managed to …
Apache POI XSSF reading in excel files
I just have a quick question about how to read in an xlsx file using the XSSF format from Apache.
Right now my code looks like this:
InputStream fs = new FileInputStream(filename); // (1)
XSSFWorkbook wb = new XSSFWorkbook(fs); // (2)
XSSFSheet sheet = wb.…
Apache POI, using both XSSF and HSSF
I have a problem with Apache POI project.
I failed to use XSSF and HSSF in the "Same Java Class". Which jar should I download or which artifact should I get add into maven?
I want to handle both xls …