我正在研究通过POI API 3.9生成Excel数据的程序。
但是目录中有许多Jar文件,如下所示。
poi-3.9-20121203
poi-excelant-3.9-20121203
poi-ooxml-3.9-20121203
poi-ooxml-schemas-3.9-20121203
poi-scratchpad-3.9-20121203
ooxml-lib/xmlbeans-2.3.0
lib/commons-logging-1.1
..etc.
我只需要创建,读取和写入excel文件。我很困惑需要什么jar文件。
请告诉我我要导入哪些文件。我已经在网站上阅读了许多文件。但我可以找到它。
谢谢
最佳答案
在您的情况下,不必太担心您的依赖性。只需使用Maven或Gradle之类的工具,然后添加POI dependency即可:
Maven :
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>3.9</version>
</dependency>
摇篮
'org.apache.poi:poi:3.9'
这将为您提供正确的依赖关系。