使用EasyExcel(FastExcel) 的模板填充报Create workbook failure
场景
使用 EasyExcel (FastExcel) 做数据导出时,用了通过模板导出数据的形式。
在读取模板文件的时候出现错误导致创建Workbook 失败,
错误日志:
Create workbook failure...
No valid entries or contents found, this is not a valid OOXML (Office Open XML) file
错误原因
//templatePath 模板路径 resources 目录下的路径包括模板文件名(如 template/xxx.xlsx)
ClassPathResource templateResource = new ClassPathResource(templatePath);
这里读取到的文件路径其实不是我们原始文件的路径而是JAVA编译之后的target/classes
下的路径,我们通过String absolutePath = templateResource.getAbsolutePath();
就能得到路径地址。
这就是 Create workbook failure
的原因之一。
如何解决
pom.xml
里面添加 plugin
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<nonFilteredFileExtensions>
<nonFilteredFileExtension>xls</nonFilteredFileExtension>
<nonFilteredFileExtension>xlsx</nonFilteredFileExtension>
</nonFilteredFileExtensions>
</configuration>
</plugin>
希望对你有帮助。
这个解决办法其实在github - easyExcel的Issues 有一位仁兄提出。本人亲测后确实可行。遂记录一下。