Java开发网 Java开发网
注册 | 登录 | 帮助 | 搜索 | 排行榜 | 发帖统计  

您没有登录

» Java开发网 » 技术文章库  

按打印兼容模式打印这个话题 打印话题    把这个话题寄给朋友 寄给朋友    该主题的所有更新都将Email到你的邮箱 订阅主题
flat modethreaded modego to previous topicgo to next topicgo to back
作者 [转贴]发挥Ant潜能的代码片断 转自ZDNet China
freeair





发贴: 88
积分: 50
于 2003-01-15 15:32 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
Apache Jakarta的Ant软件已经成为很多开发项目的标准,既包括开发源代码也包括专利软件。这里有两个简单的技巧,可以发挥Ant脚本更多的功能。



一个Ant脚本运行具有一组选项设置的命令,除了看脚本本身以外,你没有一个直观的方式用来查看这些选项。相比为每一个可能传递到脚本的目标名字添加一个输出,给每一个高级目标一个描述并使用ant-projecthelp的效果会更好一些。build.xml代码片断如下:

<project default="run">
<target name="compile" depends="test" description="Compile the source code">
...
</target>
<target name="run" depends="compile" description="Run the example">
...
</target>
<target name="test">
...
</target>
</project>

ant-projecthelp的输出是:

Buildfile: build.xml
Default target:
run Run the example
Main targets:
compile Compile the source code
run Run the example
Subtargets:
test
BUILD SUCCESSFUL
Total time: 2 seconds

没有描述的所有东西都自动地被认为是一个子目标。

Ant的第二个有用的脚本片断可以从你的Ant脚本使用环境变量。Java已经不再使用环境变量,但是对于Ant脚本来说,它们依然很有用。Ant开发人员已经做到,使用属性任务的environment属性,这个变量在通用平台上都能使用。用法如下:

<!-- turn on environment variables -->
<property environment="env"/>
<property name="ant.home" value="${env.ANT_HOME}"/>

environment属性将环境变量放到命名空间“env”中,在变量名前加“env.”前缀即可访问到环境变量。




如何用JTable设置表头多行

话题树型展开
人气 标题 作者 字数 发贴时间
7186 [转贴]发挥Ant潜能的代码片断 转自ZDNet China freeair 1091 2003-01-15 15:32

flat modethreaded modego to previous topicgo to next topicgo to back
  已读帖子
  新的帖子
  被删除的帖子
Jump to the top of page

   Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent
Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1
客服电话 18559299278    客服信箱 714923@qq.com    客服QQ 714923