win7下Apache ant的安装与配置

一、下载及解压Apache ant apache-ant-1.9.4

二、环境变量配置

ANT_HOME=D:\Nutch\apache-ant-1.9.4

CLASSPATH=.;%JAVA_HOME%/lib/dt.jar;%JAVA_HOME%/lib/tools.jar;%ANT_HOME%/bin;

PATH=$ANT_HOME\bin

三、测试

在cmd命令行输入:ant -version

提示:Apache Ant<TM> version 1.9.4 compiled on May 27 2014表示安装成功

出现问题:

1)Unable to locate tools.jar. Expected to find it in C:\Program Files\Java\jre6\lib

命令行敲ant命令后提示:“Unable to locate tools.jar. Expected to find it in C:\Program Files\Java\jre6\lib”;ANT_HOME环境变量已经配置;

解决途径:将“C:\Program Files\Java\jdk1.6.0_16\lib”目录下的tools.jar文件拷贝到“C:\Program Files\Java\jre6\lib”目录下,重新运行命令ant,运

行正常,问题解决。

2)在cmd命令中:输入ant,如果输出: Buildfile:build.xml does not exist!

Build failed

说明ant安装成功。

四、运行第一个ant脚本

注意:我刚开始讲ant安装在C盘,结果在创建java文件,build.xml文件时都出现了问题,原因是C盘需要管理员权限才能操作。然后就在D盘讲这两个文件写好,强制复制到C盘。但是运行时又出错,因为build.xml中编译时需要建立目录build/classes,但是权限不够,总之建议安装在普通用户有读写权限的其他盘符。所以我把ant从C盘转移到了D盘

在D:\Nutch\apache-ant-1.9.4\bin\下面新建目录build,再在该目录下新建目录src 

同时在src目录下新建HelloWorld.java 

内容如下: 

package test.ant; 
public class HelloWorld{ 
public static void main(String[] args){ 
System.out.println("Hello World"); 
}
}; 

编写build.xml文件保存到D:\ant_home\apache-ant-1.8.1\bin\ 

内容如下: 

<?xml version="1.0" encoding="UTF-8" ?> 
<project name="HelloWorld" default="run" basedir="."> 
<property name="src" value="build/src" /> 
<property name="dest" value="build/classes" /> 
<property name="hello_jar" value="hello.jar" /> 
<property name="name" value="HelloWorld" /> 
<property name="version" value="1.0" /> 
<property name="year" value="2014" /> 
<echo message="----------- ${name} ${version} [${year}] ------------" /> 
<target name="init"> 
<echo message="mkdir ${dest}"></echo> 
<mkdir dir="${dest}" /> 
</target> 
<target name="compile" depends="init" description="Compile Java code"> 
<javac srcdir="${src}" destdir="${dest}" includeantruntime="on"/> 
</target> 
<target name="build" depends="compile"> 
<jar jarfile="build/${hello_jar}" basedir="${dest}"/> 
</target> 
<target name="run" depends="build"> 
<java classname="test.ant.HelloWorld" classpath="build/${hello_jar}"/> 
</target> 
<target name="clean"> 
<delete dir="${dest}" /> 
<delete file="${hello_jar}" /> 
</target> 
</project> 

运行:

Buildfile: D:\ant_home\apache-ant-1.8.1\bin\build.xml 

[echo] ----------- HelloWorld 1.0 [2010] ------------ 

init: 

[echo] mkdir build/classes 

compile: 

[javac] Compiling 1 source file to D:\ant_home\apache-ant-1.8.1\bin\build\classes 

build: 

[jar] Building jar: D:\ant_home\apache-ant-1.8.1\bin\build\hello.jar 

run: 

[java] Hello World 

BUILD SUCCESSFUL 

Total time: 1 second 

检查在目录D:\ant_home\apache-ant-1.8.1\bin\build下生成hello.jar 

你可能感兴趣的:(win7下Apache ant的安装与配置)