springboot导出excel模板文件接口

springboot 读取resources下excel文件并导出实例:

模板文件位置:
image

下载模板接口代码:

/**
     * 下载模板
     *
     * @param response
     */
    @RequestMapping(value = "/downloadTemp")
    public void downloadTemp(HttpServletResponse response) {
        InputStream inputStream = null;
        ServletOutputStream servletOutputStream = null;
        try {
            String filename = "模板.xlsx";

            Resource resource = new ClassPathResource("static/template.xlsx");
            response.setContentType("application/vnd.ms-excel");
            response.addHeader("Cache-Control", "no-cache, no-store, must-revalidate");
            response.addHeader("charset", "utf-8");
            response.addHeader("Pragma", "no-cache");
            String encodeName = URLEncoder.encode(filename, StandardCharsets.UTF_8.toString());
            response.setHeader("Content-Disposition", "attachment; filename=\"" + encodeName + "\"; filename*=utf-8''" + encodeName);

            inputStream = resource.getInputStream();
            servletOutputStream = response.getOutputStream();
            IOUtils.copy(inputStream, servletOutputStream);
            response.flushBuffer();
        } catch (Exception e) {
            log.error("执行异常", e);
        } finally {
            try {
                if (servletOutputStream != null) {
                    servletOutputStream.close();
                }
                if (inputStream != null) {
                    inputStream.close();
                }
                // 召唤jvm的垃圾回收器
                System.gc();
            } catch (Exception e) {
                log.error("执行异常", e);
            }
        }
    }```

posted on 2022-01-17 17:57  等茶的茶  阅读(500)  评论(0编辑  收藏  举报

导航