gpt4 book ai didi

java - eclipse Ant 构建包不存在

转载 作者:行者123 更新时间:2023-12-02 10:53:21 25 4
gpt4 key购买 nike

我试图在 eclipse 中生成一个 .jar(作为 Ant Build 运行),但我收到了这样一个关于我添加的 Apache jar 的错误:

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

这些 jar 是从 BuildPath -> 添加外部 Jar 添加的。

我错过了什么步骤吗?

最佳答案

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

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

然后将该路径的链接添加到您的 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>

关于java - eclipse Ant 构建包不存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51986379/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com