Apache Ant 任务 - LoadFile



说明

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

属性

序号 属性和说明
1

srcFile

源文件。

2

Property

要保存到的属性。

3

Encoding

在加载文件时使用的编码。

4

failonerror

是否在失败时停止构建。

5

Quiet

不显示诊断消息(除非使用 -verbose 或 -debug 开关调用 Apache Ant)或修改退出状态以反映错误。设置此选项为 true 意味着将 failonerror 设置为 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
广告