你的意思是从命令行为属性赋值?如果是这样,请尝试
原文链接:https://www.f2er.com/bash/390902.html-DpropertyName=itsValue
例如,
<project> <target name="hi"> <property name="person" value="world"/> <echo message="Hello ${person}"/> </target> </project>
接着
ant -Dperson="MerryPrankster" hi
产量
[echo] Hello MerryPrankster