私のxmlは機能しません:
コマンドラインで実行すると、ant compile -Dmodules = a、b、c
私のビルドファイルは、モジュールパラメータ内のモジュールの数をカウントし、forループを使用してそれらを1つずつコンパイルする必要があります
<target name="count_modules">
<resourcecount property="count">
<tokens>
<concat>
<filterchain>
<tokenfilter>
<stringtokenizer delims=","/>
</tokenfilter>
</filterchain>
<propertyresource name="modules" />
</concat>
</tokens>
</resourcecount>
<echo message="count is ${count}" />
</target>
countは常に1を返します
[echo]countは1です