有没有办法使用ant从html文件中删除所有CR LF字符

时间:2016-05-25 14:42:04

标签: ant

我尝试了很多东西,但没有什么对我有用。我也试过“fixcrlf”,但是它给了我与temp目录中的临时文件重命名有关的错误。如果有人能帮助我解决任何问题,我将非常感激。

<project name="extractElement" default="test0">

<target name = "test0">
    <antcall target = "test1"/>
    <antcall target = "test"/>
</target>
<target name="test1">
    <copy file="E:\backup\latest report\Report-20160523_2036.html" toFile="E:\backup\latest report\Report-20160523_2036_1.html"/>

</target>
<target name="test">
    <fixcrlf srcdir="E:\backup\latest report" includes="Report-20160523_2036_1.html"
    eol="lf" eof="remove" />

    <replaceregexp file="E:\backup\latest report\Report-20160523_2036_1.html"
       match="\n" 
       flags="g"
       replace=" " />
</target>


</project>

这是我尝试执行的代码。

0 个答案:

没有答案