| 1. |
Explain Using Ant And Give An Small Example? |
|
Answer» Before start using ANT, we should be CLEAR about the project name and the .java files and most importantly, the PATH where the .class files are to be placed. For example, we want the application HelloWorld to be used with ant. The Java source files are in a subdirectory called Dirhelloworld, and the .class files are to put into a SUB directory called Helloworldclassfiles. 1. The build file by name build.xml is to be written. The script is as follows <project name=”HelloWorld” default=”compiler” basedir=”.”> 2. Now run the ant script to perform the compilation: C :\> ant and see the results in the extra files and directory created: c:\>dir Dirhelloworld All the .java files are in Dirhelloworld directory and all the corresponding .class are in Helloworldclassfiles directory. Before start using ANT, we should be clear about the project name and the .java files and most importantly, the path where the .class files are to be placed. For example, we want the application HelloWorld to be used with ant. The Java source files are in a subdirectory called Dirhelloworld, and the .class files are to put into a sub directory called Helloworldclassfiles. 1. The build file by name build.xml is to be written. The script is as follows <project name=”HelloWorld” default=”compiler” basedir=”.”> 2. Now run the ant script to perform the compilation: C :\> ant and see the results in the extra files and directory created: c:\>dir Dirhelloworld All the .java files are in Dirhelloworld directory and all the corresponding .class are in Helloworldclassfiles directory. |
|