当前位置: 技术问答>java相关
在www.java.sun.com网站down下来的j2ee tutorail,提到How to Build and Run the Examples,里面有不明的地方,请帮帮忙,谢谢!!!
来源: 互联网 发布时间:2017-03-14
本文导语: 在How to Build and Run the Examples中提到: The examples are distributed with a configuration file for version 1.3 of ant, a portable make tool. The ant utility is hosted by the Jakarta project at the Apache Software Foundation. You can dow...
在How to Build and Run the Examples中提到:
The examples are distributed with a configuration file for version 1.3 of ant, a portable make tool. The ant utility is hosted by the Jakarta project at the Apache Software Foundation. You can download ant from
http://jakarta.apache.org/builds/jakarta-ant/release/v1.3/bin
其中 ant 是什么东西来的,干什么用?
The examples are distributed with a configuration file for version 1.3 of ant, a portable make tool. The ant utility is hosted by the Jakarta project at the Apache Software Foundation. You can download ant from
http://jakarta.apache.org/builds/jakarta-ant/release/v1.3/bin
其中 ant 是什么东西来的,干什么用?
|
有点像unix下的make命令,将编译项目的配置写在build.xml中,运行ant就可以编译项目了
jdk虽然可以编译java程序,但如果是比较大的项目,使用jdk分别去编译每个包是很麻烦的事,而将这些工作写入build.xml,运行ant则可以轻松搞定
ant有很多jdk不具备的功能,例如:ant可以仅编译上次编译后被修改过的java文件
jdk虽然可以编译java程序,但如果是比较大的项目,使用jdk分别去编译每个包是很麻烦的事,而将这些工作写入build.xml,运行ant则可以轻松搞定
ant有很多jdk不具备的功能,例如:ant可以仅编译上次编译后被修改过的java文件
|
ant是一个编译工具,提供一种编译的辅助环境。可以根据对build.xml文件的配置,对各种应用进行编译,打包,加载。
---
ant的功能很强大,也很实用。基本上目前绝大多数的open source软件都提供ant的编译build.xml文件。
---
ant的功能很强大,也很实用。基本上目前绝大多数的open source软件都提供ant的编译build.xml文件。
|
To :Leony (老树)
我也在看啊!ant是一个编译工具!再后面的章节种你会用到它! 有时间交流一下学习经验!
mail:javagoo@yahoo.com.cn
我也在看啊!ant是一个编译工具!再后面的章节种你会用到它! 有时间交流一下学习经验!
mail:javagoo@yahoo.com.cn