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

使用Ant編譯Java工程[1]

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

  Ant是什麼?

  Ant是一種基於Java和XML的build工具

   下載安裝Ant

  安裝Ant

  下載zip文件解壓縮到c:\ant(後面引用為%ANT_HOME%)

   在你運行Ant之前需要做一些配置工作

   將bin目錄加入PATH環境變量

   設定ANT_HOME環境變量指向你安裝Ant的目錄在一些OS上Ant的腳本可以猜測ANT_HOME(Unix和Windos NT/)-但最好不要依賴這一特性

   可選地設定JAVA_HOME環境變量(參考下面的高級小節)該變量應該指向你安裝JDK的目錄

  注意不要將Ant的antjar文件放到JDK/JRE的lib/ext目錄下Ant是個應用程序而lib/ext目錄是為JDK擴展使用的(如JCEJSSE擴展)而且通過擴展裝入的類會有安全方面的限制

   運行Ant

  運行Ant非常簡單當你正確地安裝Ant後只要輸入ant就可以了

  n 沒有指定任何參數時Ant會在當前目錄下查詢buildxml文件如果找到了就用該文件作為buildfile如果你用 find 選項Ant就會在上級目錄中尋找buildfile直至到達文件系統的根要想讓Ant使用其他的buildfile可以用參數 buildfile file這裡file指定了你想使用的buildfile

  n 可以指定執行一個或多個target當省略target時Ant使用標簽<project>的default屬性所指定的target

  命令行選項總結

ant [options] [target [target [target] ]]
Options:
help print this message
projecthelp print project help information
version print the version information and exit
quiet be extra quiet
verbose be extra verbose
debug print debugging information
emacs produce logging information without adornments
logfile file use given file for log output
logger classname the class that is to perform logging
listener classname add an instance of class as a project listener
buildfile file use specified buildfile
find file search for buildfile towards the root of the filesystem and use the first one found
Dproperty=value set property to value

[]  []  []  []  []  []  


From:http://tw.wingwit.com/Article/program/Java/ky/201311/29094.html
  • 上一篇文章:

  • 下一篇文章:
  • 推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.