使用Ant合并两个Java源文件

时间:2017-01-09 07:30:58

标签: ant

我想使用Ant合并两个不同的文件。我该怎么做?

Ex a.java and B.java
<target name="merge">
        <property prefix="app.properties" file="input1.txt" />
        <property prefix="app.properties" file="input2.txt" />
        <echoproperties destfile="output.txt">
           <propertyset>
              <propertyref prefix="app.properties"/>
              <mapper type="glob" from="app.properties.*" to=""/>
           </propertyset>
        </echoproperties>

</target>

这不能正常工作

1 个答案:

答案 0 :(得分:1)

使用concat task

<concat destfile="output.txt">
  <fileset file="input1.txt" />
  <fileset file="input2.txt" />
</concat>