SpringBoot下载文件

「爱情、让人受尽委屈。」 2022-06-06 14:13 337阅读 0赞
  1. String templateFile = "template.xls";
  2. Resource resource = new ClassPathResource(templateFile);
  3. response.setContentType("application/force-download");
  4. response.addHeader("Content-Disposition",
  5. "attachment;fileName=" + templateFile);
  6. IOUtils.copy(resource.getInputStream(),response.getOutputStream());
  7. response.flushBuffer();

发表评论

表情:
评论列表 (有 0 条评论,337人围观)

还没有评论,来说两句吧...

相关阅读