I am trying to generate excel using JSP, but generated file is not getting opened directly. If I save this file and try to open then it is getting opened but if I try to open it directly then getting below error:
The file is corrupt and cannot be opened.
I am using below specification for response header:
response.setContentType("application/vnd.ms-excel");
response.setHeader("Content-Disposition","attachment;filename="+"fileName.xls");
I also tried:
response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
Any help is appreciable. Thanks in advance.