码迷,mamicode.com
首页 > 编程语言 > 详细

java 下载excel模板

时间:2020-06-22 15:23:41      阅读:313      评论:0      收藏:0      [点我收藏+]

标签:output   content   nal   byte   finally   except   xlsx   string   初始化   

1.我们把需要下载的的excel 模板放在resource下面,模板要什么样子自己修改excel就好

技术图片

 

 

 

1.接下来我们读取需要下载的excel模板就好

String fileName="test";
ClassPathResource classPathResource = new ClassPathResource("template/eventAndProperty.xlsx");

// 判断下载哪个excel

// 初始化流
InputStream inputStream = null;
OutputStream outputStream = null;
try {
inputStream = classPathResource.getInputStream();
response.setContentType("application/x-msdownload");
outputStream = response.getOutputStream();
response.addHeader("Content-Disposition", "attachment; filename=" + new String(fileName.getBytes(),"iso-8859-1"));
// 执行流操作
IoUtils.copy(inputStream,outputStream);
} catch (IOException e) {
log.error(e.getMessage());
}finally {
// 关流
IOUtils.closeQuietly(inputStream);
IOUtils.closeQuietly(outputStream);
}

 

java 下载excel模板

标签:output   content   nal   byte   finally   except   xlsx   string   初始化   

原文地址:https://www.cnblogs.com/bt2882/p/13176665.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!