ant安裝 環境變數配置及驗證

2021-07-01 20:51:47 字數 1848 閱讀 5778

二、配置環境變數

window中設定ant環境變數:

ant_home    c:/ apache-ant-1.8.1

path             c:/ apache-ant-1.8.1/bin

classpath      c:/apache-ant-1.8.1/lib

注意:【

配置環境變數:我的電腦----屬性-----高階----環境變數

如:ant_home:c:\apache-ant-1.8.1

path:%ant_home%\bin (為了方便在dos環境下操作)

實驗了總是失敗,沒辦法換成位址 c:/ apache-ant-1.8.1/bin,而不再使用變數。。。成功了。。】

三、驗證ant

為了驗證ant是否成功安裝,可以進行如下操作:

依次選擇:開始->執行->cmd,輸入如下命令:ant

如果出現如下內容,說明安裝成功,因為ant預設執行build.xml檔案,這個檔案需要我們建立:

沒有指定任何引數時,ant會在當前目錄下尋找build.xml檔案。如果找到了就用該檔案作為buildfile。

如果,使用ant的-find選擇,就會在當前目錄的上級目錄查詢build.xml檔案,一直到達檔案系統的根。

d:\>ant -find

上面說得的都是預設的buildfile,要想使用指定的buildfile,可以使用-buildfile file引數,這裡file就是指定的要查詢的buildfile。

d:\>ant -buildfile hibernate-build.xml

也可以在ant命令之後指定執行乙個或者多個target,預設情況下,ant使用標籤中default屬性所指定的target。

d:\>ant -buildfile hibernate-build.xml compile

"complie"就是乙個target

檢視版本:ant  -version

但如果出現如下內容,說明安裝失敗:(可以重複前述步驟,直至安裝成功。)

'ant' 

不是內部或外部命令,也不是可執行的程式或批處理檔案。

從別處移動過來的:

使用:(1)在d盤根目錄下建立build.xml

1xml version="1.0" encoding="gbk"

?>

2<

project 

name

="測試指令碼"

default

="copyfile"

basedir

="."

>

3<

target 

name

="copyfile"

>

4<

copy 

file

="d:/a.txt"

todir

="e:/temp"

overwrite

="true"

/>

5target

>

6project

>

(2)在d盤根目錄下建立檔案a.txt。

(3)進入dos,

d:ant

此時可在e:/temp目錄下見到檔案aa.txt,內容與a.txt一樣,即拷貝成功!

ant安裝 環境變數配置及驗證

一 安裝ant 二 配置環境變數 window中設定ant環境變數 ant home c apache ant 1.8.1 path c apache ant 1.8.1 bin classpath c apache ant 1.8.1 lib 注意 配置環境變數 我的電腦 屬性 高階 環境變數 如...

ant安裝 環境變數配置及驗證

一 安裝ant 二 配置環境變數 window中設定ant環境變數 ant home c apache ant 1.8.1 path c apache ant 1.8.1 bin classpath c apache ant 1.8.1 lib 注意 配置環境變數 我的電腦 屬性 高階 環境變數 如...

ant安裝 環境變數配置及驗證

一 安裝ant 二 配置環境變數 window中設定ant環境變數 ant home c apache ant 1.8.1 path c apache ant 1.8.1 bin classpath c apache ant 1.8.1 lib 注意 配置環境變數 我的電腦 屬性 高階 環境變數 如...