web-dev-qa-db-ja.com

Antスクリプトを使用してファイルからデータを1行ずつ読み取る方法は?

Perlでは、<FileDescriptor>を使用して、ファイルからilneによってデータ行を読み取ります。 Antスクリプトを使用して同じことを行う方法。

13
rashok

loadfile タスクを for タスクfrom ant-contrib ( ant-contribをダウンロードしてインストールする必要があります)。

<project name="test" default="compile">

  <taskdef resource="net/sf/antcontrib/antcontrib.properties">
    <classpath>
      <pathelement location="path/to/ant-contrib.jar"/>
    </classpath>
  </taskdef>

  <loadfile property="file" srcfile="somefile.txt"/>

  <target name="compile">
    <for param="line" list="${file}" delimiter="${line.separator}">
      <sequential>
        <echo>@{line}</echo>
      </sequential>
    </for>
  </target>

</project>
29
lesmana

自分でそれをしなければなりませんでした、実際にはfor + line.separatorソリューションには欠陥があります:

  • ファイルのEOLがプラットフォームのEOLと一致する場合にのみ機能します
  • 空の行を破棄します

前の例に基づく別の(より良い)ソリューションは次のとおりです。

<project name="test" default="compile">

  <taskdef resource="net/sf/antcontrib/antcontrib.properties">
    <classpath>
      <pathelement location="path/to/ant-contrib.jar"/>
    </classpath>
  </taskdef>

  <loadfile property="file" srcfile="somefile.txt"/>

  <target name="compile">
    <for param="line">
      <tokens>
        <file file="${file}"/>
      </tokens>
      <sequential>
        <echo>@{line}</echo>
      </sequential>
    </for>
  </target>

</project>
5
mat007

トークンを使用した例は私にはうまくいきませんでした。私のシナリオでは、空白行を保持したままREADMEファイルを印刷することを検討していました。これが私が行ったことです。

<taskdef name="if-contrib" classname="net.sf.antcontrib.logic.IfTask" classpath="${basedir}/lib/ant/ant-contrib-1.0b3.jar" />
<taskdef name="for-contrib" classname="net.sf.antcontrib.logic.ForTask" classpath="${basedir}/lib/ant/ant-contrib-1.0b3.jar" />
<taskdef name="var-contrib" classname="net.sf.antcontrib.property.Variable" classpath="${basedir}/lib/ant/ant-contrib-1.0b3.jar" />
<target name="help">
    <for-contrib param="line">
        <tokens>
            <file file="README.txt" />
        </tokens>
        <sequential>
            <var-contrib name="line.length" unset="true" />
            <length string="@{line}" property="line.length" />
            <if-contrib>
                <equals arg1="${line.length}" arg2="0" />
                <then>
                    <echo>
                    </echo>
                </then>
                <else>
                    <echo>@{line}</echo>
                </else>
            </if-contrib>
        </sequential>
    </for-contrib>
</target>
2
lokivog

これを試してみてくださいそれはうまくいくはずです.....

<project name="test" default="compile">
 <loadfile property="file" srcfile="Help.txt"/>
   <target name="compile">
    <echo>${file}</echo> 
   </target>
</project>
0
Aniket Patil