apache ant可变文件类型属性

时间:2016-03-01 20:33:57

标签: java ant ant-contrib

我正在寻找一种从ant脚本中的文件加载属性的方法。具体来说,我想循环遍历属性文件列表,并在每个循环中加载当前文件中的属性并对其执行某些操作。像这样:

<for param="file">
  <path>
    <fileset containing my properties files.../>
  </path>
  <sequential>
     <property file="@{file}" prefix="fromFile"/>
     <echo message="current file: @{file}"/>
     <echo message="property1 from file: ${fromFile.property1}"/>
  </sequential>
</for>

上面的代码只会导致第一个属性文件被读取,即使每个循环都经过每个属性文件名。我知道属性是不可变的,我可以通过使用来自ant-contrib的本地任务或变量任务来解决它。但是,我不知道如何在这里应用它们,或者在这种情况下它们甚至可以为解决方案做出贡献。

2 个答案:

答案 0 :(得分:1)

这里我在与realloc相同的目录中使用了Antcontrib和两个属性文件。

p1.properties:

build.xml

p2.properties:

property1=from p1

诀窍是在for循环中使用property1=from p2 来调用另一个目标。在被调用目标中设置的属性不会传播回调用者。

的build.xml:

antcall

输出结果为:

<project name="test" default="read.property.files">
  <taskdef resource="net/sf/antcontrib/antcontrib.properties">
    <classpath>
      <pathelement location="ant-contrib/ant-contrib-1.0b3.jar"/>
    </classpath>
  </taskdef>

  <target name="read.property.files">
    <for param="file">
      <path>
        <fileset dir="." includes="*.properties"/>
      </path>
      <sequential>
        <antcall target="read.one.property.file">
          <param name="propfile" value="@{file}"/>
        </antcall>
      </sequential>
    </for>
  </target>

  <target name="read.one.property.file">
    <property file="${propfile}" />
    <echo message="current file: ${propfile}" />
    <echo message="property1 from file: ${property1}"/>
  </target>
</project>

答案 1 :(得分:0)

在我原来的问题中,我无法从for循环中加载整个属性文件(来自ant-contrib)。结果是内部for循环,ant-contrib自己的var任务与纯ant的属性任务一样工作。我所要做的就是用<property file="@{file}" prefix="fromFile"/>替换<var file="@{file}"/>。加载的属性将被最新值覆盖,我甚至不需要前缀属性来跟踪我当前所处的循环。