Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
解压 zip 或 jar 文件后,有没有办法在 ant 中自动删除源 zip/jar 文件
不是我所知道的,但您应该能够使用删除任务:
<unzip src="thefile.zip" dest="somedir"/> <delete file="thefile.zip"/>