java项目中resource目录中execl文档下载打开错误问题

本文介绍了在Maven项目中,如何通过配置插件避免Excel文件在编译时增大,以及如何安全地下载Excel模板的方法,重点在于资源管理与编码设置。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

原因排查

execl文件位置
在这里插入图片描述
经过编译后文件大小从10k变到17k
在这里插入图片描述
文件打开错误
在这里插入图片描述

解决方法

pom中增加如下打包插件,可以过滤掉execl文件不进行编译

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <version>2.6</version>
                <artifactId>maven-resources-plugin</artifactId>
                <configuration>
                    <encoding>UTF-8</encoding>
                    <nonFilteredFileExtensions>
                        <nonFilteredFileExtension>xlsx</nonFilteredFileExtension>
                    </nonFilteredFileExtensions>
                </configuration>
            </plugin>

文件下载

  @GetMapping("/download/template")
    public void downloadTemplate(HttpServletResponse response) throws Exception {
        downloadTemplate(response,"car_template.xlsx");
    }


    /**
     * 下载execl模板
     *
     * @param response
     * @param templateName
     * @throws Exception
     */
    public void downloadTemplate(HttpServletResponse response, String templateName) throws Exception {
        try (ServletOutputStream outputStream = response.getOutputStream();
             InputStream resourceAsStream = this.getClass().getClassLoader().getResourceAsStream("template/" + templateName)
        ) {
            byte[] bytes = IoUtil.readBytes(resourceAsStream);
            //响应客户端浏览器区分数据
            response.setContentType("application/vnd.ms-excel");
            response.setHeader("Content-Disposition", "attachment;filename="+templateName);
            response.setCharacterEncoding("utf-8");
            IoUtil.write(outputStream, true, bytes);
            outputStream.flush();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值