还有一个概念问题:什么是“插件”?怎么解释?
7 个解决方案
#1
ant用来方便地管理java程序的编译等。
#2
望能详细具体一点,谢了
#3
偶也不明白,希望明白的能好好说说啊
#4
http://ant.apache.org/
如果你熟悉c,c++中的make,那么ant就是make for java。它的一个特点是使用xml格式的buildfile。
不过对于许多用惯ide的人,恐怕很难掌握任何make工具包括ant,呵呵。
如果你熟悉c,c++中的make,那么ant就是make for java。它的一个特点是使用xml格式的buildfile。
不过对于许多用惯ide的人,恐怕很难掌握任何make工具包括ant,呵呵。
#5
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.
#6
Ant可以方便的进行编译,部署,打包你的java文件。并且它完成这些内容是根据一个叫build.xml的文件,这个文件定义了你源文件的位置、你需要的操作和操作结果所保存的路径,具体的使用可参考相关书籍,我想几分钟你就可以学会它的一些基本的使用方法了。
#7
JBuiler可以整合Ant,Intellij IDEA内含Ant,
你可以将它理解为make++,用过以后就会爱上它。
你可以将它理解为make++,用过以后就会爱上它。
#1
ant用来方便地管理java程序的编译等。
#2
望能详细具体一点,谢了
#3
偶也不明白,希望明白的能好好说说啊
#4
http://ant.apache.org/
如果你熟悉c,c++中的make,那么ant就是make for java。它的一个特点是使用xml格式的buildfile。
不过对于许多用惯ide的人,恐怕很难掌握任何make工具包括ant,呵呵。
如果你熟悉c,c++中的make,那么ant就是make for java。它的一个特点是使用xml格式的buildfile。
不过对于许多用惯ide的人,恐怕很难掌握任何make工具包括ant,呵呵。
#5
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.
#6
Ant可以方便的进行编译,部署,打包你的java文件。并且它完成这些内容是根据一个叫build.xml的文件,这个文件定义了你源文件的位置、你需要的操作和操作结果所保存的路径,具体的使用可参考相关书籍,我想几分钟你就可以学会它的一些基本的使用方法了。
#7
JBuiler可以整合Ant,Intellij IDEA内含Ant,
你可以将它理解为make++,用过以后就会爱上它。
你可以将它理解为make++,用过以后就会爱上它。