poi导出excel报错Failed to read zip entry source

poi导出excel报错Failed to read zip entry sourcepoi导出报IOException异常,错误提示Failedtoreadzipentrysource问题:poi读取excel模板配置,按模板格式导出excel,读取excel模板时,报以上错误。原因:excel模板在项目打包编译时,xlsx文件解压缩时出问题,可以去target\classes\templates查看,excel打不开,提示文件损坏解决办法:在pom文件中加…

poi导出excel报错Failed

poi导出报IOException异常,错误提示Failed to read zip entry source

问题:poi读取excel模板配置,按模板格式导出excel,读取excel模板时,报以上错误。

原因:excel模板在项目打包编译时,xlsx文件解压缩时出问题,可以去target\classes\templates查看,excel打不开,提示文件损坏

解决办法:在pom文件中加入以下配置即可避免此问题

<plugins>
	<!-- 资源文件拷贝插件 -->
	<plugin>
		<groupId>org.apache.maven.plugins</groupId>
		<artifactId>maven-resources-plugin</artifactId>
		<configuration>
			<encoding>UTF-8</encoding>
			<!-- 过滤后缀文件 -->
			<nonFilteredFileExtensions>
				<nonFilteredFileExtension>xlsx</nonFilteredFileExtension>
				<nonFilteredFileExtension>xls</nonFilteredFileExtension>
			</nonFilteredFileExtensions>
		</configuration>
	</plugin>
</plugins>

 

今天的文章poi导出excel报错Failed to read zip entry source分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/30060.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注