当前位置:   article > 正文

springboot打包jar文件运行后无法读取jar目录中的Excel模板文件_将excel打包进jar包后读取不到

将excel打包进jar包后读取不到

原因:SpringBoot内嵌web容器,其特点是只有一个jar文件,在容器启动后不会解压缩。


解决方式:

1. 必须使用相对路径读取文件;

假设你的模板文件放在了 resources —> templates —> xlsx —> test.xlsx

2. 只能使用流去读取,不能用file;

	// jar里面文件读取方式:
	ClassPathResource classPathResource = new ClassPathResource("templates/xlsx/test.xlsx");
	// 获取文件流
	classPathResource .getInputStream();
  • 1
  • 2
  • 3
  • 4

如果要将流存储到数组中如下:

	/**
     * 输出流转字节数组
     * @param input 输出流
     * @return 字节数组
     */
    public static byte[] toByteArray(InputStream input) throws IOException {
        ByteArrayOutputStream output = new ByteArrayOutputStream();
        byte[] buffer = new byte[1024 * 4];
        int size = 0;
        while (-1 != (size = input.read(buffer))) {
            output.write(buffer, 0, size);
        }
        return output.toByteArray();
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/代码探险家/article/detail/815958
推荐阅读
相关标签
  

闽ICP备14008679号