/ Published in: Java
Expand |
Embed | Plain Text
ServletOutputStream output = response.getOutputStream(); response.setContentType("application/msexcel"); response.setHeader("Content-Disposition", "attachment; filename=CombinedReportAdmin.xls"); response.setContentLength(fileToDownload.available()); int c; while ((c = fileToDownload.read()) != -1) { output.write(c); } output.flush(); output.close(); fileToDownload.close();
You need to login to post a comment.
