XSSFWorkbook和HSSFWorkbook的区别

Workbook wb = new HSSFWorkbook();
FileOutputStream fileOut = new FileOutputStream("workbook.xls");
wb.write(fileOut);
fileOut.close();

HSSFWorkbook是解析出来excel 2007 以前版本的,后缀名为xls的。

Workbook wb = new XSSFWorkbook();
FileOutputStream fileOut = new FileOutputStream("workbook.xlsx");
wb.write(fileOut);
fileOut.close();

XSSFWorkbook是解析excel 2007 版的,后缀名为xlsx。

你可能感兴趣的:(POI)