Мы пытаемся сгенерировать файлы Excel, и я сталкиваюсь с вышеуказанной ошибкой при попытке выполнить этот код -
Я пытался использовать CreationHelper
, а также пытался FileOutputStream
. Но, похоже, ничего не работает. Мы используем apache poi - 4.0.1
XSSFWorkbook xssfWorkbook = excelDownloadService.createSheetForBudget(type, campaignId, duration);
ByteArrayOutputStream bos = new ByteArrayOutputStream();
xssfWorkbook.write(bos);
response.setContentType("application/vnd.ms-excel");
response.setHeader("Content-Disposition", "attachment; filename=Budget.Report_" + LocalDateTime.now().format(DateTimeFormatter.ofPattern("MMddyy")) + ".xlsx");
xssfWorkbook.write(response.getOutputStream());
xssfWorkbook.close();
response.getOutputStream().flush();
response.getOutputStream().close();