我正在使用Ant的“get”任务将文件保存到磁盘。我对Ant不是很熟悉,也无法弄清楚如何从源URL中删除文件名以用作文件的目的地。
示例:
<property name="srcUrl" value="http://localhost/foo/bar.html" />
<property name="destLocation" value="" />
....
<!-- now, dynamically grab "bar.html" from srcUrl and store it in destLocation -->
<get src="${srcUrl}" dest="${destLocation}" />
答案 0 :(得分:3)
<basename property="destLocation" file="${srcUrl}"/>