<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Li Guoliang &#187; ANT</title>
	<atom:link href="http://liguoliang.com/tag/ant/feed/" rel="self" type="application/rss+xml" />
	<link>http://liguoliang.com</link>
	<description>ActionScript Flex Java JEE PHP...</description>
	<lastBuildDate>Mon, 21 May 2012 17:04:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Using Date and Time in Ant 在Ant中使用日期及时间</title>
		<link>http://liguoliang.com/2012/using-date-and-time-in-ant-%e5%9c%a8ant%e4%b8%ad%e4%bd%bf%e7%94%a8%e6%97%a5%e6%9c%9f%e5%8f%8a%e6%97%b6%e9%97%b4/</link>
		<comments>http://liguoliang.com/2012/using-date-and-time-in-ant-%e5%9c%a8ant%e4%b8%ad%e4%bd%bf%e7%94%a8%e6%97%a5%e6%9c%9f%e5%8f%8a%e6%97%b6%e9%97%b4/#comments</comments>
		<pubDate>Thu, 22 Mar 2012 15:08:28 +0000</pubDate>
		<dc:creator>Guoliang</dc:creator>
				<category><![CDATA[软件工程]]></category>
		<category><![CDATA[ANT]]></category>

		<guid isPermaLink="false">http://liguoliang.com/?p=2336</guid>
		<description><![CDATA[Example: 
<code>
&#60;tstamp&#62;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;format property="today" pattern="yyyy_MM_dd_HH_mm"/&#038;gt</code><p class='read-more'><a href='http://liguoliang.com/2012/using-date-and-time-in-ant-%e5%9c%a8ant%e4%b8%ad%e4%bd%bf%e7%94%a8%e6%97%a5%e6%9c%9f%e5%8f%8a%e6%97%b6%e9%97%b4/'>More...</a></p><p><p>

----------Post from: <a href="http://liguoliang.com">@LiGuoliang.com, 欢迎回来~</a>----------</p></p>
]]></description>
			<content:encoded><![CDATA[<p>Example: </p>
<p><code>
<p>&lt;tstamp&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;format property="today" pattern="yyyy_MM_dd_HH_mm"/&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/tstamp&gt;<br />&lt;echo message="${today}"&gt;&lt;/echo&gt;</p>
<p></code>
<p>&nbsp;</p>
<p>[echo] 2012_03_22_23_00
<p>&nbsp;
<p>Tstamp in Ant manual:</p>
<p><a href="http://ant.apache.org/manual/Tasks/tstamp.html">http://ant.apache.org/manual/Tasks/tstamp.html</a></p>
<p><p>

----------Post from: <a href="http://liguoliang.com">@LiGuoliang.com, 欢迎回来~</a>----------</p></p>
]]></content:encoded>
			<wfw:commentRss>http://liguoliang.com/2012/using-date-and-time-in-ant-%e5%9c%a8ant%e4%b8%ad%e4%bd%bf%e7%94%a8%e6%97%a5%e6%9c%9f%e5%8f%8a%e6%97%b6%e9%97%b4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Ant Zip File 使用Ant打包zip文件</title>
		<link>http://liguoliang.com/2010/using-ant-zip-file/</link>
		<comments>http://liguoliang.com/2010/using-ant-zip-file/#comments</comments>
		<pubDate>Thu, 14 Oct 2010 12:05:54 +0000</pubDate>
		<dc:creator>Guoliang</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[ANT]]></category>

		<guid isPermaLink="false">http://liguoliang.com/2010/using-ant-zip-file/</guid>
		<description><![CDATA[使用ANT打包zip文件.<p class='read-more'><a href='http://liguoliang.com/2010/using-ant-zip-file/'></a></p><p><p>

----------Post from: <a href="http://liguoliang.com">@LiGuoliang.com, 欢迎回来~</a>----------</p></p>
]]></description>
			<content:encoded><![CDATA[<p>&#160;&#160;&#160; &lt;!&#8211; =================================   <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; target:&#160; buildATDZipFile – 指定参与打包的目录或具体文件 &#8211; 适用于打包指定的具体目录/文件.    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ================================= &#8211;&gt;    <br />&#160;&#160;&#160; &lt;target name=&quot;buildATDZipFile&quot; description=&quot;Build Drive zip file.&quot;&gt;    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;zip destfile=&quot;${DIR_ROOT}/Drive.zip&quot;&gt;    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;zipfileset dir=&quot;${DIR_ROOT}/src&quot; prefix=&quot;${ROOT_NAME}/src&quot; excludes=&quot;**/.svn&quot;/&gt;    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;zipfileset dir=&quot;${DIR_ROOT}/libs&quot; prefix=&quot;${ROOT_NAME}/libs&quot; excludes=&quot;**/.svn&quot;/&gt;    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;zipfileset dir=&quot;${DIR_ROOT}&quot; includes=&quot;OpenInBrowser.bat&quot; fullpath=&quot;${ROOT_NAME}/OpenInBrowser.bat&quot;/&gt;    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;/zip&gt;    <br />&#160;&#160;&#160; &lt;/target&gt;</p>
<p>Or: </p>
<p>&#160;&#160;&#160; &lt;!&#8211; =================================   <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; target: buildZipTest 指定排除列表, 直接打包 &#8211; 适用于排出部分打包全部.    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ================================= &#8211;&gt;    <br />&#160;&#160;&#160; &lt;target name=&quot;buildZipTest&quot; description=&quot;description&quot;&gt;    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;zip destfile=&quot;TestAnt.zip&quot; basedir=&quot;${basedir}&quot; excludes=&quot;    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; *.zip,    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; **/.svn/**,    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; tomcat/logs/**,    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; build/**&quot;&gt;&lt;/zip&gt;    <br />&#160;&#160;&#160; &lt;/target&gt;</p>
<p><p>

----------Post from: <a href="http://liguoliang.com">@LiGuoliang.com, 欢迎回来~</a>----------</p></p>
]]></content:encoded>
			<wfw:commentRss>http://liguoliang.com/2010/using-ant-zip-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>使用ANT Build SWC</title>
		<link>http://liguoliang.com/2010/using-ant-build-swc/</link>
		<comments>http://liguoliang.com/2010/using-ant-build-swc/#comments</comments>
		<pubDate>Mon, 11 Oct 2010 12:59:27 +0000</pubDate>
		<dc:creator>Guoliang</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[ANT]]></category>
		<category><![CDATA[COMPC]]></category>

		<guid isPermaLink="false">http://liguoliang.com/2010/using-ant-build-swc/</guid>
		<description><![CDATA[使用ANT编译SWC.<p class='read-more'><a href='http://liguoliang.com/2010/using-ant-build-swc/'></a></p><p><p>

----------Post from: <a href="http://liguoliang.com">@LiGuoliang.com, 欢迎回来~</a>----------</p></p>
]]></description>
			<content:encoded><![CDATA[<p>两年前刚开始学Flex的时候常去看Cookbook, 还翻译过<a href="http://liguoliang.com/2008/%E4%BD%BF%E7%94%A8ant%E7%94%9F%E6%88%90swc-building-swc-with-ant/" target="_blank">一篇关于生成SWC文件的帖子</a>&#8212;当时甚至连ANT都没有用过, 真TM是为赋新词强说愁, 闲的肱二头肌疼, 再上层楼, 用了ANT, 写过几个Build才知道, 除了使用了装B武器之外, 我仍旧一无是处.</p>
<p>使用Adobe提供的<strong>compc</strong> &#8211; component compiler来打包as文件, 使用ANT编写极为简单, 如下:</p>
<p>&lt;!&#8211; =================================<br />
target: Build SWC文件举例 &#8211; 极不实用.<br />
================================= &#8211;&gt;<br />
&lt;target name=&#8221;buildSWCTest&#8221; depends=&#8221;" description=&#8221;Build Athena Framework SWC file.&#8221;&gt;<br />
&lt;compc output=&#8221;$E:/test.swc&#8221;<br />
<strong> include-classes=&#8221;com.liguoliang.Class1 com.liguoliang.Class2&#8243;</strong>&gt;<br />
&lt;source-path path-element= &#8220;E:/Projects/FLEX/TestApp/src&#8221; /&gt;<br />
&lt;/compc&gt;<br />
&lt;/target&gt;</p>
<p>compc要求使用include-classes指定参与打包的Class, 一个半个类倒也无所谓, 一个个写上就可以了, 但问题是成百上千个, 写的完也写乱套了. 于是出现如下ANT命令, 帮助生成指定目录下的所有AS Class的PackageName:</p>
<p>注意: 部分变量定义没贴出来. 领会意思就ok.</p>
<p>&lt;fileset dir=&#8221;${src-dir}&#8221; id=&#8221;<strong><span style="text-decoration: underline;">src.files</span></strong>&#8220;&gt;<br />
&lt;include name=&#8221;**\**&#8221;/&gt;<br />
&lt;/fileset&gt;</p>
<p>&lt;echo message=&#8221;${<strong><span style="text-decoration: underline;">src-dir</span></strong>}&#8221; /&gt;<br />
&lt;pathconvert<br />
property=&#8221;<strong><span style="text-decoration: underline;">build-classes</span></strong>&#8221;<br />
pathsep=&#8221; &#8221;<br />
dirsep=&#8221;.&#8221;<br />
refid=&#8221;<strong>src.files</strong>&#8221;<br />
&gt;<br />
&lt;map from=&#8221;\&#8221; to=&#8221;/&#8221;/&gt;<br />
&lt;map from=&#8221;${<strong>src-dir</strong>}/&#8221; to=&#8221;"/&gt;<br />
&lt;mapper&gt;<br />
&lt;chainedmapper&gt;<br />
&lt;globmapper from=&#8221;*.as&#8221; to=&#8221;*&#8221;/&gt;<br />
&lt;!&#8211;globmapper from=&#8221;*.mxml&#8221; to=&#8221;*&#8221;/&#8211;&gt;<br />
&lt;/chainedmapper&gt;<br />
&lt;/mapper&gt;<br />
&lt;/pathconvert&gt;</p>
<p>&lt;echo message=&#8221;Class is set to: ${<strong>build-classes</strong>}&#8221;/&gt;</p>
<p>使用$build-classes作为compc的include-classes的Value再进行Build就可.</p>
<p><strong>另: 可在compc中, 可使用external-library-path增加外部SWC:</strong><br />
&lt;external-library-path file=&#8221;somdir/common.swc&#8221; append=&#8221;true&#8221;/&gt;</p>
<blockquote><p>See:<br />
1. <a href="http://livedocs.adobe.com/flex/3/html/help.html?content=anttasks_6.html" target="_blank">Using the compc task</a><br />
2. <a href="http://livedocs.adobe.com/flex/3/html/help.html?content=compilers_22.html#250507" target="_blank">Using compc, the component compiler</a><br />
3. <a href="http://livedocs.adobe.com/flex/3/html/help.html?content=anttasks_1.html" target="_blank">Working with compiler options</a> &#8211; 同时适用于mxmlc与compc<br />
4. <a href="http://hi.baidu.com/liyunluck/blog/item/cc5692ccd9863d35b700c845.html" target="_blank">Flex compc &amp; ant 编译</a></p></blockquote>
<p><p>

----------Post from: <a href="http://liguoliang.com">@LiGuoliang.com, 欢迎回来~</a>----------</p></p>
]]></content:encoded>
			<wfw:commentRss>http://liguoliang.com/2010/using-ant-build-swc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>使用ANT生成SWC  Building SWC with ANT</title>
		<link>http://liguoliang.com/2008/%e4%bd%bf%e7%94%a8ant%e7%94%9f%e6%88%90swc-building-swc-with-ant/</link>
		<comments>http://liguoliang.com/2008/%e4%bd%bf%e7%94%a8ant%e7%94%9f%e6%88%90swc-building-swc-with-ant/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 06:44:41 +0000</pubDate>
		<dc:creator>Guoliang</dc:creator>
				<category><![CDATA[F.翻译整理]]></category>
		<category><![CDATA[ANT]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[SWC]]></category>

		<guid isPermaLink="false">http://liguoliang.com/2008/11/315/</guid>
		<description><![CDATA[by <a href="http://www.adobe.com/cfusion/communityengine/index.cfm?event=addSearchUser&#38;loc=en_US&#38;productId=2&#38;mostRecent=on&#38;userId=87308349">Tomasz Stocki</a> on <a href="http://www.adobe.com/cfusion/communityengine/index.cfm?event=addSearchDate&#38;productId=2&#38;clearBrowseFilter=true&#38;loc=en_US&#38;date=2008-10-19">October 19, 2008 </a>Avg  原载: Flex cookbook beta  翻译及整理:LiGL
问题摘要 Problem Summary
你试图使用ANT编译SWC文件.  You want to compile your swc using<p class='read-more'><a href='http://liguoliang.com/2008/%e4%bd%bf%e7%94%a8ant%e7%94%9f%e6%88%90swc-building-swc-with-ant/'>More...</a></p><p><p>

----------Post from: <a href="http://liguoliang.com">@LiGuoliang.com, 欢迎回来~</a>----------</p></p>
]]></description>
			<content:encoded><![CDATA[<p>by <a href="http://www.adobe.com/cfusion/communityengine/index.cfm?event=addSearchUser&amp;loc=en_US&amp;productId=2&amp;mostRecent=on&amp;userId=87308349">Tomasz Stocki</a> on <a href="http://www.adobe.com/cfusion/communityengine/index.cfm?event=addSearchDate&amp;productId=2&amp;clearBrowseFilter=true&amp;loc=en_US&amp;date=2008-10-19">October 19, 2008 </a>Avg  原载: Flex cookbook beta  翻译及整理:LiGL</p>
<h5>问题摘要 Problem Summary</h5>
<p>你试图使用ANT编译SWC文件.  You want to compile your swc using ant.</p>
<h5>解决方法  Solution Summary</h5>
<p>使用Adobe在Flex SDK中提供的Flex ANT任务来编译你的应用 Use flex ant tasks provided by adobe in flex SDK to compile your application.</p>
<h5>解释 Explanation</h5>
<p>在部署应用程序时, 我们可以使用ANT这个强大的工具&#8212;它可以帮助我们运行程序, 运行命令行, 复制文件,等等&#8230;<br />
When deploying flex application we can use very powerful tool – ant. With his help we can launch applications, run command line tools, copy files and much, much more (see: <a href="http://ant.apache.org/manual/index.html">http://ant.apache.org/manual/index.html</a>)<br />
在开始之前, 如果你使用的时FlexBuilder单独版本[非Eclipse插件版], 你需要先安装ANT<br />
Before we start you should install ANT on your flex builder if you have stand alone version.<br />
参考: See article “Installing Ant in Flex Builder 3” at :<br />
<a href="http://blog.jodybrewster.net/2008/04/09/installing-ant-in-flex-builder-3/">http://blog.jodybrewster.net/2008/04/09/installing-ant-in-flex-builder-3/</a></p>
<p>安装完毕之后, 只需要建立以下两个文件: After that, just create two files in project:</p>
<p><strong>build.properties: &#8212;&#8211;该文件用于存储Bulid.xml中用到的属性, 便于管理与查看</strong><br />
<code>###### Flex Properties ##############################<br />
# change this path to your flex sdk directory<br />
# Use "/" in your directory path e.g. C:/FlexSDK/3.0.0<br />
FLEX_HOME=C:/flex_sdk_4.0<br />
###### Project Properties ###########################<br />
src-dir=${basedir}/src</code><br />
<strong>build.xml: </strong></p>
<p><code>&lt;project name="Ant build SWC sample" basedir="." default="build SWC"&gt;<br />
&lt;!-- load user configuration properties --&gt;<br />
&lt;property file="build.properties" /&gt;<br />
&lt;taskdef resource="flexTasks.tasks" classpath="${FLEX_HOME}/ant/lib/flexTasks.jar" /&gt;<br />
&lt;!-- =================================<br />
target: build SWC<br />
================================= --&gt;<br />
&lt;target name="build SWC"&gt;<br />
&lt;compc output="${basedir}/swc/sample.swc"<br />
include-classes="tom.hallo.CHalloWorld"&gt;<br />
&lt;source-path path-element="${src-dir}" /&gt;<br />
&lt;/compc&gt;<br />
&lt;/target&gt;<br />
&lt;/project&gt;</code><br />
第一个文件中存储了关于本机FlexSDK及工程的目录. First file build.properties, holds info about location FlexSDK and files structure in your project.<br />
在Build.xml中的代码读取第一个文件并运行ANT的compc任务生成swc文件. Code in build.xml loads build.properties and run ant task <code>compc</code> to generate swc.<br />
在FlexBuilder中, 只需要将Build.xml从导航栏中拖到Ant视图中, 然后双击&#8217;build SWC&#8217;任务. In Flex Builder, just drag and drop build.xml from Flex Navigator to Ant view and double “click build SWC” task.</p>
<p><p>

----------Post from: <a href="http://liguoliang.com">@LiGuoliang.com, 欢迎回来~</a>----------</p></p>
]]></content:encoded>
			<wfw:commentRss>http://liguoliang.com/2008/%e4%bd%bf%e7%94%a8ant%e7%94%9f%e6%88%90swc-building-swc-with-ant/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>通过ANT与ASDoc生成Flex文档</title>
		<link>http://liguoliang.com/2008/%e9%80%9a%e8%bf%87ant%e4%b8%8easdoc%e7%94%9f%e6%88%90flex%e6%96%87%e6%a1%a3/</link>
		<comments>http://liguoliang.com/2008/%e9%80%9a%e8%bf%87ant%e4%b8%8easdoc%e7%94%9f%e6%88%90flex%e6%96%87%e6%a1%a3/#comments</comments>
		<pubDate>Thu, 23 Oct 2008 16:33:10 +0000</pubDate>
		<dc:creator>Guoliang</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[ANT]]></category>
		<category><![CDATA[ASDoc]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://liguoliang.com/2008/10/280/</guid>
		<description><![CDATA[需求: 透过工程注释自动化产生文档
分析:使用ANT进行自动化配置, 使用ASDoc产生注释
在所在工程中新建一个properties文件,用以保存相关配置, 同时建立一个bulid.xml, 用以提供ANT配置文件.
具体实现:
1:&#160; 为便于管理与配置, 将ASDoc的参数放置于一个p<p class='read-more'><a href='http://liguoliang.com/2008/%e9%80%9a%e8%bf%87ant%e4%b8%8easdoc%e7%94%9f%e6%88%90flex%e6%96%87%e6%a1%a3/'>More...</a></p><p><p>

----------Post from: <a href="http://liguoliang.com">@LiGuoliang.com, 欢迎回来~</a>----------</p></p>
]]></description>
			<content:encoded><![CDATA[<h3>需求: 透过工程注释自动化产生文档</h3>
<h3>分析:使用ANT进行自动化配置, 使用ASDoc产生注释</h3>
<p>在所在工程中新建一个properties文件,用以保存相关配置, 同时建立一个bulid.xml, 用以提供ANT配置文件.</p>
<h3>具体实现:</h3>
<p>1:&#160; 为便于管理与配置, 将ASDoc的参数放置于一个properties文件中, 在本例中我们取名叫做: asdoc.properties    <br />含如下信息:     <br />FLEX_HOME = E:\\eclipse-jee-europa-fall2-win32_FB3\\eclipse\\FBPlug-in301\\sdks\\3.1.0     <br />asdoc.exe&#160; = E:\\eclipse-jee-europa-fall2-win32_FB3\\eclipse\\FBPlug-in301\\sdks\\3.1.0\\bin\\asdoc.exe     <br />dir.docSource = com\\insprise\\localizationeditor     <br />dir.src&#160; = .     <br />dir.output =&#160; E:\\eclipse-jee-europa-fall2-win32_FB3\\eclipse\\workspace\\AIRTest\\doc     <br />main.title = Test     <br />window.title&#160; =&#160; test     <br />footer&#160; = Insprise Software</p>
<p>以上提供了ASDoc的路径, 源文件的目录, 文档输出目录, 以及文档的网页标题, 文档内标题, 文档页脚等信息.</p>
<p>2: Build.xml配置: [因代码高亮代码有误,导致bulid.xml显示有误,请参照网页源代码自行修正]    </p>
<pre class="xml" name="code">
<project name="ASDoc build" default="main">
 <!-- 定义ASDoc变量/参数来源 -->
<property file="asdoc.properties"></property>
 <!-- main target:删除旧文档,生成新文档 -->
 <target name="main" depends="clean_Old_Docs, create_Docs" />
 <!-- 删除旧文档 -->
 <target name="clean_Old_Docs">
  <delete dir="${dir.output}" />
  <mkdir dir="${dir.output}" />
 </target>
 <!-- 生成新文档 -->
 <target name="create_Docs">
  <exec failonerror="true" executable="${asdoc.exe}">
  <arg line="-source-path &#39;${dir.src}&#39;" />
   <arg line="-doc-sources &#39;${dir.docSource}&#39;" />
   <arg line="-main-title &#39;${main.title}&#39;" />
   <arg line="-window-title &#39;${window.title}&#39;" />
  <arg line="-footer &#39;${footer}&#39;" />
  <arg line="-output &#39;${dir.output}&#39;" />
  <arg line="-library-path &#39;${FLEX_HOME}\frameworks\libs&#39;" />
  <arg line="-library-path &#39;${FLEX_HOME}\frameworks\libs\air&#39;" />
  </exec>
 </target>
</project></pre>
<p>ANT运行build.xml之后,将会自动生成文档到输出目录. </p>
<p>ASDoc具体的参数配置可参见:<a title="http://liguoliang.com/2008/10/286/" href="http://liguoliang.com/2008/10/286/">http://liguoliang.com/2008/10/286/</a></p>
<p>当ANT编译成功后,会出现如下提示[这个是在Eclipse中使用ANT编译后的输出信息]:<br />
  </p>
<p>Buildfile: E:\eclipse-jee-europa-fall2-win32_FB3\eclipse\workspace\AIRTest\src\build.xml<br />
  <br />clean_Old_Docs:</p>
<p>&#160;&#160; [delete] Deleting directory E:\eclipse-jee-europa-fall2-win32_FB3\eclipse\workspace\AIRTest\doc</p>
<p>&#160;&#160;&#160; [mkdir] Created dir: E:\eclipse-jee-europa-fall2-win32_FB3\eclipse\workspace\AIRTest\doc</p>
<p>create_Docs:</p>
<p>&#160;&#160;&#160;&#160; [exec] Loading configuration file E:\eclipse-jee-europa-fall2-win32_FB3\eclipse\FBPlug-in301\sdks\3.1.0\frameworks\flex-config.xml</p>
<p>&#160;&#160;&#160;&#160; [exec] Documentation was created in E:\eclipse-jee-europa-fall2-win32_FB3\eclipse\workspace\AIRTest\doc\</p>
<p>main:</p>
<p>BUILD SUCCESSFUL</p>
<p>Total time: 26 seconds</p>
<p><p>

----------Post from: <a href="http://liguoliang.com">@LiGuoliang.com, 欢迎回来~</a>----------</p></p>
]]></content:encoded>
			<wfw:commentRss>http://liguoliang.com/2008/%e9%80%9a%e8%bf%87ant%e4%b8%8easdoc%e7%94%9f%e6%88%90flex%e6%96%87%e6%a1%a3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

