我需要为ant创建构建文件以构建我的JavaFX project
,我已经搜索了很多,但没有任何帮助我。它仍然显示错误,不会编译。当我尝试运行jar文件时 - jar文件无法删除。
以下是显示错误<{p>的build.xml
的一部分
<target depends="init" name="-do-clean">
<delete dir="${build.dir}"/>
<delete dir="${dist.dir}" followsymlinks="false" includeemptydirs="true"/>
</target>
这是错误
init:
deps-clean:
Updating property file: D:\javaFx\JavaFXApplication3\build\built-clean.properties
Deleting directory D:\javaFx\JavaFXApplication3\build
D:\javaFx\JavaFXApplication3\nbproject\build-impl.xml:1388: Unable to delete file D:\javaFx\JavaFXApplication3\dist\run1228379781\JavaFXApplication3.jar
BUILD FAILED (total time: 2 seconds)
答案 0 :(得分:0)
通常,为什么删除dist文件夹以下内容的问题是您的应用程序仍在运行,而您正在Windows下进行开发,只需确保您的应用程序完全关闭,例如检查任务管理器是否运行java进程并检查是否在按下X按钮时关闭了应用程序,看看here
答案 1 :(得分:0)
手动删除jar文件,然后再次尝试清理和构建。 它对我有用。