我使用Apache POI在我的spring mvc应用程序中生成excel文件。这是我的春季行动:
@RequestMapping(value = "/excel", method = RequestMethod.POST)
public void companyExcelExport(@RequestParam String filter, @RequestParam String colNames, HttpServletResponse response) throws IOException{
XSSFWorkbook workbook = new XSSFWorkbook();
//code for generate excel file
//....
response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
response.setHeader("Content-Disposition", "attachment; filename=test.xlsx");
workbook.write(response.getOutputStream());
response.setHeader("Content-Length", "" + /* How can i access workbook size here*/);
}
我使用XSSFWorkbook
因为我需要生成Excel 2007格式。但我的问题是XSSFWorkbook
没有getBytes
或getSize
方法。如何计算生成的xlsx文件的大小?
编辑:我在这里使用了ByteArrayOutputStream
:
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
workbook.write(response.getOutputStream());
workbook.write(byteArrayOutputStream);
response.setHeader("Content-Length", "" + byteArrayOutputStream.size());
答案 0 :(得分:3)
正如@JB Nizet所说:在写回复之前设置Header。
所以你应该做的是:
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
workbook.write(byteArrayOutputStream);
response.setHeader("Content-Length", "" + byteArrayOutputStream.size());
workbook.write(response.getOutputStream());
请参阅此答案here,因为它描述了如何将ByteArrayOutputStream与HSSFWorkbook一起使用。
希望有所帮助。