java导出文件excle报错Failed to read zip entry source

java导出文件excle报错Failed to read zip entry source1、报错信息:java.io.IOException:Failedtoreadzipentrysource atorg.apache.poi.openxml4j.opc.ZipPackage.<init>(ZipPackage.java:103) atorg.apache.poi.openxml4j.opc.OPCPackage.open(OPCPackage.java:324) atcom.dxhy.core.thread.JxsebbExportThread.exp

java导出文件excle报错Failed

1、报错信息:

java.io.IOException: Failed to read zip entry source
	at org.apache.poi.openxml4j.opc.ZipPackage.<init>(ZipPackage.java:103)
	at org.apache.poi.openxml4j.opc.OPCPackage.open(OPCPackage.java:324)
	at com.dxhy.core.thread.JxsebbExportThread.exportListArrayToExcel(JxsebbExportThread.java:217)
	at com.dxhy.core.thread.JxsebbExportThread.cicleExport(JxsebbExportThread.java:196)
	at com.dxhy.core.thread.JxsebbExportThread.run(JxsebbExportThread.java:146)
Caused by: java.io.EOFException: null
	at java.util.zip.ZipInputStream.readFully(ZipInputStream.java:405)
	at java.util.zip.ZipInputStream.readLOC(ZipInputStream.java:296)
	at java.util.zip.ZipInputStream.getNextEntry(ZipInputStream.java:122)
	at org.apache.poi.openxml4j.util.ZipSecureFile$ThresholdInputStream.getNextEntry(ZipSecureFile.java:280)
	at org.apache.poi.openxml4j.util.ZipInputStreamZipEntrySource.<init>(ZipInputStreamZipEntrySource.java:52)
	at org.apache.poi.openxml4j.opc.ZipPackage.<init>(ZipPackage.java:100)
	... 4 common frames omitted

2、原因:excel模板在项目打包编译时,xlsx文件解压缩时出问题,可以去target\classes\templates查看,excel打不开,提示文件损坏
3、解决方案:
在对应的pom文件中加入配置项,进行资源过滤

        <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>

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

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

(0)
编程小号编程小号

相关推荐

发表回复

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