如何使用Maven编辑Eclipse中的org.apache.poi.ss.usermodel.DataFormatter.formatCellValue类

时间:2014-01-27 02:32:57

标签: java eclipse maven apache-poi

您好我在这里尝试实现toCSV示例: http://svn.apache.org/repos/asf/poi/trunk/src/examples/src/org/apache/poi/ss/examples/ToCSV.java

而且,我正在使用maven来吸引依赖关系。这是我的pom.xml中的一个片段:

        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi</artifactId>
            <version>3.10-beta2</version>
        </dependency>

        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-ooxml</artifactId>
            <version>3.10-beta2</version>
        </dependency>

使用maven eclipse:eclipse我的所有jar文件都会进入项目。

但是,我收到了这个错误:

Exception in thread "main" java.lang.RuntimeException: Unexpected celltype (5)
    at org.apache.poi.ss.usermodel.DataFormatter.formatCellValue(DataFormatter.java:833)

即使我在其他一些SO问题中读到了这个问题: Apache POI xlsx read, cell with # value - error unexpected cell type(5)

但是,我会在DataFormatter类中添加一些错误处理,但我无法进入它。 Eclipse说:(截图) enter image description here

我不知道怎么做到。

所以我的问题是如何编辑这个课程?或者,我是否假设jar文件实际上不是我的项目的一部分,只是链接到 - 并存储在.m2文件夹中?因为我非常希望将它们复制到我的项目文件夹中,以便我可以在某个服务器上将其作为Web作业...

0 个答案:

没有答案