Apache Ant 任务 - LoadFile


描述

Loadfile 任务加载文件并将其内容设置到属性中。

特性

先生编号 属性和描述
1

源文件

源文件。

2

财产

要保存到的属性。

3

编码

加载文件时使用的编码。

4

失败错误

是否在失败时停止构建。

5

安静的

不要显示诊断消息(除非使用 -verbose 或 -debug 开关调用 Apache Ant)或修改退出状态以反映错误。将其设置为 true 意味着将 failureonerror 设置为 false。

用法

使用以下内容创建 message.txt -

Welcome to tutorialspoint.com

例子

使用以下内容创建 build.xml -

<?xml version="1.0"?>
<project name="TutorialPoint" default="info">
   <loadfile property="message" srcFile="message.txt"/>
   <target name="info">            
      <echo message="${message}"/>
   </target>
</project>

输出

在上面的构建文件上运行 Ant 会产生以下输出 -

F:\tutorialspoint\ant>ant
Buildfile: F:\tutorialspoint\ant\build.xml

info:
   [echo] Welcome to tutorialspoint.com

BUILD SUCCESSFUL
Total time: 0 seconds