熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> Java開源技術 >> 正文

Ant的配置使用入門[2]

2022-06-13   來源: Java開源技術 

    工程文件目錄結構

    一個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>

[]  []  []  


From:http://tw.wingwit.com/Article/program/Java/ky/201311/29294.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.