Java实现Excel模板下载以及遇到的问题

Java实现Excel模板下载以及遇到的问题

前言:

项目在开发过程中,会用到Excel的导入,导出,复杂一点的Excel可以写好放在项目指定位置,下载时候直接从指定位置获取即可。

代码实现

excel存放的位置:

controller

c 复制代码
 @GetMapping("downloadxxxTemplate")
 @ApiOperation("下载xx-xx导入模板")
 public void downloadxxxTemplate(@RequestParam(value = "fileName") String fileName, HttpServletResponse response) throws IOException {
        dutyRosterService.downloadxxxTemplate(fileName,response);
    }

service

c 复制代码
   /**
     * 下载xxx-xx信息导入模板
     * 
     * @param fileName
     *            文件名
     * @param response
     *            响应
     * @throws IOException
     *             异常
     */
void downloadxxxTemplate(String fileName, HttpServletResponse response) throws IOException;

serviceImpl

c 复制代码
  public void downloadxxxTemplate(String fileName, HttpServletResponse response) throws IOException {
        InputStream inputStream = null;
        BufferedInputStream bis = null;
        BufferedOutputStream bos = null;
        try {
        	// 从类路径中的 excel 目录下获取名为 fileName.xlsx 的 Excel 文件
            inputStream = this.getClass().getClassLoader().getResourceAsStream("excel/" + fileName + ".xlsx");
            if (inputStream == null) {
               // 异常
            }
            bis = new BufferedInputStream(inputStream);
            fileName = URLEncoder.encode(fileName + ".xlsx", "UTF-8");
            // 设置文件下载头
            response.addHeader("Content-Disposition", "attachment;filename=" + fileName);
            // 设置文件ContentType类型,这样设置,会自动判断下载文件类型
            response.setContentType("multipart/form-data");
            bos = new BufferedOutputStream(response.getOutputStream());
            int len = 0;
            while ((len = bis.read()) != -1) {
                bos.write(len);
                bos.flush();
            }
            bos.close();
            bis.close();
            inputStream.close();
        } catch (IOException e) {
        	// 异常
        } finally {
            if (bos != null) {
                bos.close();
            }
            if (bis != null) {
                bis.close();
            }
            if (inputStream != null) {
                inputStream.close();
            }
        }
    }

遇到的问题:

问题一:

excel 存放在resources的excel目录下,一直没有获取到报空指针异常,如下图,但是修改后还是空

从类路径中获取指定名称的资源,并返回一个输入流用于读取该资源的内容。

改为:this.getClass().getClassLoader().getResourceAsStream("excel/" + fileName + ".xlsx");

问题二:

打包 无论是package还是install 在target中excel都没有打进去,如下图:

最后找资料需要在maven依赖添加如下配置即可:

c 复制代码
	
    <build>
        <resources>
        	// 用自己话理解 可能有误
        	// 配置maven打包时候,将指定目录下面的文件打到target里面 
            <resource>
                <directory>src/main/resources</directory>
                <filtering>true</filtering>
            </resource>
        </resources>
	//  maven打包Excel等资源时候,使用maven的filter,导致打包的Excel文件乱码或者损坏添加如下配置即可
		<plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-resources-plugin</artifactId>
                <configuration>
                    <encoding>UTF-8</encoding>
                    <nonFilteredFileExtensions>
                        <nonFilteredFileExtension>xls</nonFilteredFileExtension>
                        <nonFilteredFileExtension>xlsx</nonFilteredFileExtension>
                    </nonFilteredFileExtensions>
                </configuration>
            </plugin>
        </plugins>

再次package时,target多个excel文件夹如下,问题解决

喜欢我的文章的话,点个阅读或者点个点赞,是我编写博客的动力,持续更新中

相关推荐
m0_571957582 小时前
Java | Leetcode Java题解之第543题二叉树的直径
java·leetcode·题解
魔道不误砍柴功4 小时前
Java 中如何巧妙应用 Function 让方法复用性更强
java·开发语言·python
NiNg_1_2344 小时前
SpringBoot整合SpringSecurity实现密码加密解密、登录认证退出功能
java·spring boot·后端
闲晨4 小时前
C++ 继承:代码传承的魔法棒,开启奇幻编程之旅
java·c语言·开发语言·c++·经验分享
测开小菜鸟5 小时前
使用python向钉钉群聊发送消息
java·python·钉钉
P.H. Infinity6 小时前
【RabbitMQ】04-发送者可靠性
java·rabbitmq·java-rabbitmq
生命几十年3万天6 小时前
java的threadlocal为何内存泄漏
java
caridle7 小时前
教程:使用 InterBase Express 访问数据库(五):TIBTransaction
java·数据库·express
^velpro^7 小时前
数据库连接池的创建
java·开发语言·数据库
苹果醋37 小时前
Java8->Java19的初步探索
java·运维·spring boot·mysql·nginx