ant用来方便地管理java程序的编译等。

解决方案 »

  1.   

    http://ant.apache.org/如果你熟悉c,c++中的make,那么ant就是make for java。它的一个特点是使用xml格式的buildfile。不过对于许多用惯ide的人,恐怕很难掌握任何make工具包括ant,呵呵。
      

  2.   

    Ant is a Java-based build tool that uses XML-based configuration files to describe build tasks.  The Eclipse platform allows you to run Ant buildfiles from your plug-in and contribute new Ant tasks and types using extension points.  The rest of this discussion assumes that you have a basic understanding of Ant.
      

  3.   

    Ant可以方便的进行编译,部署,打包你的java文件。并且它完成这些内容是根据一个叫build.xml的文件,这个文件定义了你源文件的位置、你需要的操作和操作结果所保存的路径,具体的使用可参考相关书籍,我想几分钟你就可以学会它的一些基本的使用方法了。
      

  4.   

    JBuiler可以整合Ant,Intellij IDEA内含Ant,
    你可以将它理解为make++,用过以后就会爱上它。