0
我有一個Ant任務,構建一個可執行JAR文件,運行一些JUnit測試,然後運行可執行JAR文件以查看它是否構建正確。但是,問題是我必須在我的計算機旁邊關閉我的Java程序。在運行幾秒鐘後,有沒有辦法從Ant關閉它?從Ant關閉Java程序?
<target name="buildAndTest" depends="create-submission-jar">
<!-- Other stuff happening here -->
<java fork="true" jar="${jar.executable}" failonerror="true" />
</target>
http://stackoverflow.com/questions/10977619/how-to-kill-a-java-process-started-in-ant –