全部 -
我正在关注此页面上最简单的说明:
http://ant.apache.org/manual/develop.html
但是,当我尝试执行目标“main”时,我在netbeans中遇到了这个错误:
taskdef class dec102012.MyAntTask cannot be found using the classloader AntClassLoader[]
但是这个错误没有意义,因为扩展“Task”的新Java类看起来像这样:
package dec102012;
import org.apache.tools.ant.BuildException;
public class MyAntTask extends org.apache.tools.ant.Task{
private String msg;
// The method executing the task
public void execute() throws BuildException {
System.out.println(msg);
}
// The setter for the "message" attribute
public void setMessage(String msg) {
this.msg = msg;
}
}
我的build.xml中的相关部分如下所示:
<taskdef name="mytask" classname="dec102012.MyAntTask" classpath="dec102012"/>
<target name="main">
<mytask message="Hello World! MyVeryOwnTask works!"/>
</target>
答案 0 :(得分:14)
问题是Ant类加载器需要知道* .class文件所在的位置。
我将build.xml更改为:
<taskdef name="mytask" classname="dec102012.MyAntTask" classpath="build/classes"/>
<target name="main">
<mytask message="Hello World! MyVeryOwnTask works!"/>
</target>
它有效(即打印出Hello World消息)。