java 下载excel模板
Posted 写尽千帆
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 下载excel模板相关的知识,希望对你有一定的参考价值。
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模板的主要内容,如果未能解决你的问题,请参考以下文章