@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
相关推荐
KingRumn14 小时前
Linux信号之标准信号与实时信号BestAns16 小时前
一文带你吃透 Java 反射机制wasp52016 小时前
AgentScope Java 核心架构深度解析WHOVENLY16 小时前
【javaScript】- 笔试题合集(长期更新,建议收藏,目前已更新至31题)2501_9167665416 小时前
【Springboot】数据层开发-数据源自动管理QT 小鲜肉16 小时前
【Linux命令大全】001.文件管理之git命令(实操篇)指尖跳动的光16 小时前
将多次提交合并成一次提交程序员码歌16 小时前
短思考第263天,每天复盘10分钟,胜过盲目努力一整年自在极意功。16 小时前
MyBatis 动态 SQL 详解:从基础到进阶实战oden17 小时前
1 小时速通!手把手教你从零搭建 Astro 博客并上线