我的日食找不到罐子了

时间:2017-09-27 13:44:30

标签: eclipse javafx

我正在尝试在我的项目中使用Excel,所以我添加了一些额外的jar:

MyBuildPath

当我尝试运行我的项目时,我遇到了这样的例外情况:

:compileJavaC:\Users\Azimut\Documents\workspaces\helperandroid\MultiViewProjectFXML\src\main\java\myClasses\SearchOrders.java:12: error: package org.apache.poi.ss.usermodel does not exist
import org.apache.poi.ss.usermodel.*;
^
C:\Users\Azimut\Documents\workspaces\helperandroid\MultiViewProjectFXML\src\main\java\myClasses\SearchOrders.java:13: error: package org.apache.poi.xssf.usermodel does not exist
import org.apache.poi.xssf.usermodel.XSSFWorkbook;

.......

C:\Users\Azimut\Documents\workspaces\helperandroid\MultiViewProjectFXML\src\main\java\myClasses\SearchOrders.java:116: error: cannot find symbol
    public static String getCellText(Cell cell) {
                                     ^
      symbol:   class Cell
      location: class SearchOrders

    13 errors
     FAILED

    FAILURE: Build failed with an exception.

    * What went wrong:
    Execution failed for task ':compileJava'.
    > Compilation failed; see the compiler error output for details.

    * Try:
    Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

    BUILD FAILED 

我通过互联网搜索了很多,但我仍然无法理解如何解决这个问题。

1 个答案:

答案 0 :(得分:0)

我假设您正在激活您的代码命令行,而不是使用eclipse。 在这种情况下,您必须在运行代码时在类路径中添加依赖项jar。 java -cp <jar files>是可能的方式。

你能在eclipse中执行吗? 问候, 〜KD