@PostMapping("/downloadTemplate")
@Operation(summary="下载入职excel模板")
public void downloadExcel(HttpServletResponse response){
try{
//获取输入流,原始模板位置
String filePath = "template/gridPersonTemplate.xlsx";
ClassPathResource resource = new ClassPathResource(filePath);
InputStream bis = resource.getInputStream();
//假如以中文名下载的话,设置下载文件名称
String filename = "gridPersonTemplate1.xlsx";
//转码,免得文件名中文乱码
filename = URLEncoder.encode(filename,"UTF-8");
//设置文件下载头
response.addHeader("Content-Disposition", "attachment;filename=" + filename);
//1.设置文件ContentType类型,这样设置,会自动判断下载文件类型
response.setContentType("multipart/form-data");
BufferedOutputStream out = new BufferedOutputStream(response.getOutputStream());
int len = 0;
while((len = bis.read()) != -1){
out.write(len);
out.flush();
}
out.close();
}catch (Exception e){
log.error(e.getMessage());
}
5分钟下载excel模板
被程序耽误的胡先生2025-02-22 8:25
相关推荐
chushiyunen几秒前
dom操作笔记、xml和document等whisperrr.几秒前
【spring01】Spring 管理 Bean-IOC,基于 XML 配置 beanchushiyunen3 分钟前
tomcat使用笔记、启动失败但是未打印日志天上掉下来个程小白10 分钟前
HttpClient-03.入门案例-发送POST方式请求H13469489014 分钟前
华为服务器系统备份,想要备份华为服务器系统可以怎么操作?ModestCoder_19 分钟前
将一个新的机器人模型导入最新版isaacLab进行训练(以unitree H1_2为例)林政硕(Cohen0415)23 分钟前
Linux驱动开发进阶(三)- 热插拔机制热爱编程的小曾24 分钟前
sqli-labs靶场 less 8wangjun515926 分钟前
linux,物理机、虚拟机,同时内外网实现方案;物理机与虚拟机互通网络;杰克崔30 分钟前
分析sys高问题的方法总结