@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
相关推荐
冴羽5 分钟前
3 招让你的 Shadcn 出海应用性能提升 40 倍中议视控10 分钟前
网络中控系统通过推流软件实现可视化:RTSP,H265,WEB等推流Hsuna15 分钟前
Tailwind CSS 比起传统CSS框架无法实现的一些功能SilentSamsara16 分钟前
装饰器基础:从闭包到装饰器的自然演变咸鱼翻身更入味17 分钟前
Agent流式输送aXin_ya30 分钟前
微服务 第十天 (Redis多级缓存)南境十里·墨染春水36 分钟前
linux 学习进展 网络编程 ——TCP 协议 TIME_WAIT 状态详解逸Y 仙X1 小时前
文章二十五:ElasticSearch 分页查询摇滚侠1 小时前
11 空间转换 前端 Web 开发 HTML5 + CSS3 + 移动 web 视频教程,前端web入门首选黑马程序员