你可以用
當需要指定類似路徑的值時
<pathelement path=
<pathelement location=
</classpath>
location屬性指定了相對於project基目錄的一個文件和目錄
為簡潔起見
<pathelement path=
</classpath>
可以被簡寫作
<classpath path=
也可通過<fileset>元素指定路徑
<pathelement path=
<fileset dir=
<include name=
</fileset>
<pathelement location=
</classpath>
上面的例子構造了一個路徑值包括
如果你想在多個task中使用相同的path
path
<pathelement path=
<fileset dir=
<include name=
</fileset>
<pathelement location=
</path>
<path id=
<path refid=
<pathelement location=
</path>
前面所提的關於<classpath>的簡潔寫法對於<path>也是有效的
<path refid=
<pathelement location=
</path>
可寫成
<path id=
[
From:http://tw.wingwit.com/Article/program/Java/ky/201311/29092.html