ANT
ANT簡介
Ant簡介
ANT環境安裝設置
Apache Ant功能特性
Ant構建文件
Apache Ant安裝
Ant屬性任務
Apache Ant入門程序(Hello World)
Ant屬性文件
Apache Ant構建文件-project標籤
Ant數據類型
Apache Ant目標-target標籤
Ant構建項目
Apache Ant任務-task標籤
Ant構建文檔
Apache Ant屬性
Ant創建JAR文件
Apache Ant令牌過濾器
Ant創建WAR文件
Apache Ant命令行參數
Ant打包應用
Apache Ant If和Unless用法
Ant部署應用程序
Apache Ant類型
Ant執行Java代碼
Apache Ant自定義組件
Ant和Eclipse集成
Apache Ant監聽器和記錄器
Ant Junit集成
Apache Ant IDE集成
Apache Ant InputHandler接口
Ant之外的Apache Ant任務
Apache Ant參數處理器
Apache Ant API
Apache Ant Jar示例
Ant長度任務
此任務用於設置任何字符串或文件的長度屬性。它也可以用於顯示屬性值或作爲條件。
它具有以下給出的各種屬性。
1. Apache Ant長度任務屬性
屬性
描述
必需
property
用於設定長度
否
mode
與文件長度模式一起使用
否
file
要報告其長度的單個文件
否
resource
報告長度的單一資源
否
string
要報告的長度的字符串
否
trim
在處理字符串時修剪
否
length
比較長度
否
when
比較類型:equal
, eq
和greater
等等
否
下面來看看一些設置字符串和文件長度的例子。
2. Apache Ant長度任務示例
存儲字符串長度:
<project name="java-ant project" default="run">
<target name="run">
<length string="Hello Javatpoint" property="length.foo"/>
<echo message="length is: ${length.foo}"></echo>
</target>
</project>
存儲文件長度:
<project name="java-ant project" default="run">
<target name="run">
<length file="abc" property="length.abc"/>
</target>
</project>
將文件路徑及其長度存儲到length
屬性中。
<project name="java-ant project" default="run">
<target name="run">
<length property="length" mode="each">
<fileset dir="." includes="abc,xyz"/>
</length>
</target>
</project>