本文主要是介绍Java导入Excel文件时出现警告:A part name shall not have a forward slash as the last character,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
代码:
异常信息:
解决方法:
版本问题,升级POI版本后,不再出现导入警告。
//升级前
<dependency><groupId>org.apache.poi</groupId><artifactId>poi-ooxml</artifactId><version>5.1.0</version>
</dependency>
//升级后
<dependency><groupId>org.apache.poi</groupId><artifactId>poi-ooxml</artifactId><version>5.2.2</version>
</dependency>
参考文档:A part name shall not have a forward slash as the last character | 不支持:http://javax.xml.XMLConstants/property/accessExternalDTD · Issue #708 · Sayi/poi-tl · GitHub
这篇关于Java导入Excel文件时出现警告:A part name shall not have a forward slash as the last character的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!