POI导出Excel报错“扩展名与文件的格式不匹配”

时间:2024-02-22 14:22:55

下面是我用POI导出Excel的实例:

依赖的jar包

<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>4.0.1</version>
</dependency>

工具类

public class ExportExcel {
// 显示的导出表的标题
private String title;
// 导出表的列名
private String[] rowName;
private List<Object[]> dataList = new ArrayList<Object[]>();
HttpServletResponse response;

// 构造方法,传入要导出的数据
public ExportExcel(String title, String[] rowName, List<Object[]> dataList) {
this.dataList = dataList;
this.rowName = rowName;
this.title = title;
}
/*
* 导出数据
*/
public void export(OutputStream out) throws Exception {
try {
HSSFWorkbook workbook = new HSSFWorkbook(); // 创建工作簿对象
HSSFSheet sheet = workbook.createSheet(title); // 创建工作表
// 产生表格标题行
HSSFRow rowm = sheet.createRow(0);
// 标题行高
rowm.setHeight((short) 480);
HSSFCell cellTiltle = rowm.createCell(0);
// sheet样式定义【getColumnTopStyle()/getStyle()均为自定义方法 - 在下面 - 可扩展】
HSSFCellStyle columnTopStyle = this.getColumnTopStyle(workbook);// 获取列头样式对象
HSSFDataFormat df = workbook.createDataFormat();
HSSFCellStyle style = this.getStyle(workbook); // 单元格样式对象
style.setDataFormat(df.getFormat("@"));
style.setWrapText(false);

sheet.addMergedRegion(new CellRangeAddress(0, 1, 0,
(rowName.length - 1)));
cellTiltle.setCellStyle(columnTopStyle);
cellTiltle.setCellValue(title);

// 定义所需列数
int columnNum = rowName.length;
HSSFRow rowRowName = sheet.createRow(2); // 在索引2的位置创建行(最顶端的行开始的第二行)
// 表头行高
rowRowName.setHeight((short) 500);

// 将列头设置到sheet的单元格中
for (int n = 0; n < columnNum; n++) {
HSSFCell cellRowName = rowRowName.createCell(n); // 创建列头对应个数的单元格
cellRowName.setCellType(CellType.STRING); // 设置列头单元格的数据类型
HSSFRichTextString text = new HSSFRichTextString(rowName[n]);
cellRowName.setCellValue(text); // 设置列头单元格的值
cellRowName.setCellStyle(columnTopStyle); // 设置列头单元格样式
}
// 将查询出的数据设置到sheet对应的单元格中
for (int i = 0; i < dataList.size(); i++) {
Object[] obj = dataList.get(i);// 遍历每个对象
HSSFRow row = sheet.createRow(i + 3);// 创建所需的行数
// 列数据行高
row.setHeight((short) 480);

for (int j = 0; j < obj.length; j++) {
HSSFCell cell = null; // 设置单元格的数据类型
if (j == 0) {
cell = row.createCell(j, CellType.NUMERIC);
cell.setCellValue(i + 1);
} else {
cell = row.createCell(j, CellType.STRING);
if (obj[j] != null) {
cell.setCellValue(obj[j].toString()); // 设置单元格的值
} else {
cell.setCellValue("");
}
}
cell.setCellStyle(style); // 设置单元格样式
}
}
// 让列宽随着导出的列长自动适应
for (int colNum = 0; colNum < columnNum; colNum++) {
int columnWidth = sheet.getColumnWidth(colNum) / 85;
for (int rowNum = 0; rowNum < sheet.getLastRowNum(); rowNum++) {
HSSFRow currentRow;
// 当前行未被使用过
if (sheet.getRow(rowNum) == null) {
currentRow = sheet.createRow(rowNum);
} else {
currentRow = sheet.getRow(rowNum);
}
if (currentRow.getCell(colNum) != null) {
HSSFCell currentCell = currentRow.getCell(colNum);
if (currentCell.getCellType() == CellType.STRING) {
if (currentCell.getRichStringCellValue() != null) {
int length = currentCell.getStringCellValue().getBytes().length;
if (columnWidth < length) {
columnWidth = length;
}
}
}
}
}
if (colNum == 0) {
sheet.setColumnWidth(colNum, (columnWidth - 2) * 110);
} else {
sheet.setColumnWidth(colNum, (columnWidth + 4) * 195);
}
}
workbook.write(out);
} catch (Exception e) {
e.printStackTrace();
}
}
    /*
* 列头单元格样式
*/
public HSSFCellStyle getColumnTopStyle(HSSFWorkbook workbook) {
// 设置字体
HSSFFont font = workbook.createFont();
// 设置字体大小
font.setFontHeightInPoints((short) 11);
// 字体加粗
font.setBold(true);
// 设置字体名字
font.setFontName("微软雅黑");
// 设置样式;
HSSFCellStyle style = workbook.createCellStyle();
// 设置底边框;
style.setBorderBottom(BorderStyle.THIN);
// 设置底边框颜色;
style.setBottomBorderColor((short) 16);
// 设置左边框;
style.setBorderLeft(BorderStyle.THIN);
// 设置左边框颜色;
style.setBottomBorderColor((short) 16);
// 设置右边框;
style.setBorderRight(BorderStyle.THIN);
// 设置右边框颜色;
style.setBottomBorderColor((short) 16);
// 设置顶边框;
style.setBorderTop(BorderStyle.THIN);
// 设置顶边框颜色;
style.setBottomBorderColor((short) 16);
// 在样式用应用设置的字体;
style.setFont(font);
// 设置自动换行;
style.setWrapText(false);
// 设置水平对齐的样式为居中对齐;
style.setAlignment(HorizontalAlignment.CENTER);
// 设置垂直对齐的样式为居中对齐;
style.setVerticalAlignment(VerticalAlignment.CENTER);

return style;
}
}

控制层

// 创建ExportExcel对象
ExportExcel ex = new ExportExcel(title, rowsName, dataList);
OutputStream out = null;
try {
out = response.getOutputStream();
response.setContentType("application/msexcel");
response.setHeader("Content-disposition",
"attachment; filename=" + new String("order1".getBytes("gbk"), "iso8859-1") + ".xls");
response.setCharacterEncoding("utf-8");
ex.export(out);
out.close();
} catch (Exception e) {
logger.error("Excel导出异常!", e);
}


以上是我在开发过程中的实例,刚开始我导出的Excel格式后缀名是用“xlsx”,后面测试人员本地电脑用了电脑自带的office工具,无法打开,我在开发电脑上用的是WPS编辑都正常所以没发现这个问题,
刚开始想到的是POI包创建工作簿对Excel版本的兼容性问题,所以查看了测试环境,用的是Excel2003、Excel2007。

查看代码:
HSSFWorkbook workbook = new HSSFWorkbook(); 
查找资料说HSSFWorkbook创建工作簿兼容Excel2003及以上的版本,所以就排除版本问题。
后面查看了“xlsx”和“xls”的区别:
xls 是一个特有的二进制格式,其核心结构是复合文档类型的结构,而 xlsx 的核心结构是 XML 类型的结构,采用的是基于 XML 的压缩方式,使其占用的空间更小。
xls是excel2003及以前版本生成的文件格式,xlsx是excel2007及以后版本生成的文件格式(excel 2007之后版本可以打开xls格式的文件)。
最后就把导出的Excel后缀名换成了“xls”,完美解决了该问题,perfect~