SpringMVC(Springboot)返回檔案方法
阿新 • • 發佈:2018-12-17
*********************************************************
專案需要生成excel表格,然後返回給使用者,使用者需要下載這個excel表格,所以封裝了一下返回檔案流的方法
public ResponseEntity<FileSystemResource> export(File file) { if (file == null) { return null; } HttpHeaders headers = new HttpHeaders(); headers.add("Cache-Control", "no-cache, no-store, must-revalidate"); headers.add("Content-Disposition", "attachment; filename=" + System.currentTimeMillis() + ".xls"); headers.add("Pragma", "no-cache"); headers.add("Expires", "0"); headers.add("Last-Modified", new Date().toString()); headers.add("ETag", String.valueOf(System.currentTimeMillis())); return ResponseEntity .ok() .headers(headers) .contentLength(file.length()) .contentType(MediaType.parseMediaType("application/octet-stream")) .body(new FileSystemResource(file)); }
使用方法很簡單,傳入file就行了,如果和springmvc結合一下的話,加上conroller,示例程式碼如下:
@RequestMapping(value = "export_xls.html", method = RequestMethod.GET)
public ResponseEntity<FileSystemResource> exportXls() {
return export(new File("E:\\mydict.xls"));
}
這段的意思就是返回E盤下的mydict.xls給使用者