熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> Java開源技術 >> 正文

Ant的一些偏門技巧[2]

2022-06-13   來源: Java開源技術 

    四去除屬性文件的注釋

    屬性文件

    # 這裡是注釋會給過濾掉

    builddir = build
    build文件
    <copy file=propsproperties todir=sample>
    <filterchain>
    <striplinecomments>
    <comment value=# />
    </striplinecomments>
    </filterchain>
    </copy>

    五兩個花俏的功能

    聲音提示

    <project name=Sound default=all>
    <property file=buildproperties />
    <target name=init>
    <sound>
    <success source=${sounddir}/successwav duration= />
    <fail source=${sounddir}/failwav loops= />
    </sound>
    </target>
    <target name=fail depends=init>
    <fail />
    </target>
    <target name=success depends=init />
    <target name=all depends=success />
    </project>

[]  []  []  


From:http://tw.wingwit.com/Article/program/Java/ky/201311/29287.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.