如何传递通过shell脚本调用的Ant脚本的参数?

我需要通过shell脚本调用一个ant脚本。 让我们考虑一下ant脚本的参数是a,b,c。 我怎样才能通过这些variables的参数? 我必须提供参数来调用shell脚本。 谁可以帮我这个事?

你的意思是从命令行分配一个属性值? 如果是这样,请尝试

-DpropertyName=itsValue 

例如,

 <project> <target name="hi"> <property name="person" value="world"/> <echo message="Hello ${person}"/> </target> </project> 

接着

 ant -Dperson="MerryPrankster" hi 

产量

  [echo] Hello MerryPrankster