def fileEx = new file(/Y:\documents\Test file.txt/)def copyTofile = new file(/Y:\documents\Test file - copIEd by Groovy and Ant.txt/)ant = new AntBuilder()ant.copy(file:fileEx,tofile:copyTofile)
但是当我尝试在Eclipse中将其作为Groovy脚本运行时,我收到此错误:
Caught: java.lang.NoClassDefFoundError: org/apache/tools/ant/BuildExceptionjava.lang.NoClassDefFoundError: org/apache/tools/ant/BuildException at copyfile.run(copyfile.groovy:4)Caused by: java.lang.classNotFoundException: org.apache.tools.ant.BuildException
我尝试将ant.jar添加到myclasspath,Groovy lib文件夹中的ant.jar和Eclipse插件lib文件夹中的ant.jar,但这并没有解决问题.
解决方法 看起来像 groovy-eclipse plugin船只的一部分库完全安装了groovy.除了eclipse插件之外,您还需要完整安装 groovy,这可能是您已经拥有的.您应该能够通过转到项目来解决问题,然后转到PropertIEs-> Java Build Path,然后单击’librarIEs’. ‘添加外部罐子’并导航到完整的groovy安装.在那里,lib目录应该有ant.jar和ant-launcher.jar.添加它们.这应该清除它(并排队调试的基础问题).
总结以上是内存溢出为你收集整理的AntBuilder在Groovy Console中工作,但在Eclipse中不工作全部内容,希望文章能够帮你解决AntBuilder在Groovy Console中工作,但在Eclipse中不工作所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)