从Apache POI常见问题解答:
我可以混合不同版本的POI罐子吗?
否。不支持此功能。
所有使用中的POI罐子必须来自同一版本。不支持诸如poi-3.11.jar和poi-
ooxml-3.9.jar之类的组合,它们将无法以不可预测的方式工作。
您的pom依赖于3.11、3.12和3.13中的Apache POI
jar,不支持FAQ所述
您需要将所有这些更改为3.13,然后它将起作用
我建议类似的东西:
<properties> <poi.version>3.13</poi.version></properties><dependencies> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>${poi.version}</version> </dependency> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-scratchpad</artifactId> <version>${poi.version}</version> </dependency> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId> <version>${poi.version}</version> </dependency> <!-- etc as needed -->
这样,您可以确保所有POI罐都来自同一版本!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)