工程文件目录结构
一个ant 工程目录结构
C\workspace\anttest工程主目录
\src 源程序目录
\build\classes 编译后的 class 文件目录
\lib 开发工程所需要的类库目录比如开发数据库时所需要的 jdbc lib(这次没用到)
\jar 打包好的 jar 程序目录(这次没用到)
\buildxml 工程配置文件\buildpropertiees工程资源文件
建立工程描述文件和建立工程资源文件
建立工程描述文件buildxml
<?xml version=?>
<project default=main basedir=>
<echo message=pulling in property files />
<property file=buildproperties />
<target name=init>
<echo message=init delete the old class files and create the new folds />
<delete dir=${classpath} />
<mkdir dir=${classpath} />
</target>
<target name=compile depends=init>
<echo message=compile the java source files />
<javac srcdir=src\hello\ant destdir=${classpath} />
</target>
<target name=main depends=compile>
<echo message=calling java to run this java project />
<java classname=helloantHelloAnt>
<classpath>
<pathelement path=${classpath} />
</classpath>
</java>
</target>
</project>
[] [] []