0

Limitation While Generating Excel Drop Down with Apache POI

This link solves the problem for an HSSFWorkbook. Can we do this for an XSSFWorkbook too ?

Community
  • 1
  • 1
abhinav kumar
  • 153
  • 1
  • 9

1 Answers1

0

HSSF is the POI Project's pure Java implementation of the Excel 97(-2007) file format.

While XSSF is the POI Project's pure Java implementation of the Excel 2007 OOXML (.xlsx) File format.

HSSF and XSSF provides ways to readspreadsheets create, modify, read and write XLS spreadsheets.

They also provide:

  1. low level structures for those with special needs
  2. an eventmodel api for efficient read-only access
  3. a full usermodel api for creating, reading and modifying XLS files

For Further Reference Please gothrough with This Link

Vikrant Kashyap
  • 6,398
  • 3
  • 32
  • 52