方式一:引入*.properties文件ui
1.在cms.properties文件中定義屬性spa
userName=adminxml
2.在build.xml中引入屬性it
<property file="${basedir}/build/cms.properties"></property>email
3.使用*.properties文件中的屬性mobile
<echo message="userName:${userName}"/>sed
方式二:build文件定義
file
1.定義propertiesim
<property name="email" value="788999@qq.com"></property>qq
2.使用properties
<echo message="email:${email}"/>
方式三:ant執行參數傳遞
1.執行時傳入參數
D:\projects\cms\build>ant -Dmobile=18300506123
參數名稱:mobile 參數值:18300506123
2.使用properties
<echo message="mobile:${mobile}"/>
具體演示:
1.定義屬性文件*.properties
2.編寫build.xml
3.執行ant