eclipse Ant Build 包不存在

eclipse Ant Build package does not exist

我正在尝试在 Eclipse 中生成一个 .jar(运行 作为 Ant Build),但我收到关于我添加的 Apache 罐子的错误:

[javac] *path...*: error: package org.apache.commons.io does not exist
[javac] import org.apache.commons.io.FilenameUtils;

罐子是从 BuildPath -> Add External Jar 添加的。

我错过了什么步骤吗?

您需要在build.xml中配置编译路径 可以这样做

<path id="main.classpath">
  <fileset dir="<directory with your jar dependencies>">
     <include name="*.jar"/>
  </fileset>

然后将 link 添加到您的 javac 任务

<javac destdir="<directory where to store class files>" srcdir="<directory with java files>" debug="on" compiler="modern">
     <classpath refid="main.classpath"/> <!-- this is where you tell javac which path to use -->
</javac>