简体   繁体   中英

How to distinguish between XSSF and HSSF automatically in Apache POI?

I would like to be able to open Excel file of arbotrary type. Is it possible to select between HSSFWorkbook and XSSFWorkbook automatically?

Currently I write

Workbook workbook = new HSSFWorkbook(excelFile);

Can I write universal?

Yes! All you need to do is use WorkbookFactory

As per this part of the docs , it's better to use a File than an InputStream . So, just do something like:

File file = new File("input.xls");
Workbook wb = WorkbookFactory.create(file);

That will create whichever of HSSFWorkbook or XSSFWorkbook your file needs

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM