📜  Apache Ant LoadFile任务

📅  最后修改于: 2020-12-26 14:01:38             🧑  作者: Mango

Apache Ant LoadFile任务

此任务用于将文件加载到属性中。它适用于文件,并提供了srcFile属性以简化操作。除非指定其他语言环境,否则它将使用默认的编码当前语言环境。

它使用下面给出的各种属性。

Apache Ant LoadFile任务属性

Attribute Description Required
srcFile It is used to specify source file. Yes
property A property to where to save file. Yes
encoding To set encoding of the file. No
failonerror Whether to halt the build on failure or not. No
quiet It prevents to display a diagnostic message. No

让我们用一些例子来了解它的功能。

Apache Ant LoadFile任务示例

    
    
        
        
    

上面的代码将产生abc.txt文件的内容。

在读取文件时指定编码。

    
    
        
        
    

设置failonerror以获取错误信息