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.
我需要在 Netbeald 中将一些自定义文件添加到我的 Java 项目中,因此每次构建后它会自动将它们复制到输出文件夹中。
我怎样才能做到这一点?
你可以像这样调整你的 build.xml:
<target name="-post-jar"> <copy file="my/dir/file.txt" todir="build/classes/my/package"/> </target>
如果您不将这些文件与 Java 文件一起存储,则将它们所在的目录添加到项目中作为“源包文件夹”
“源包文件夹”中的所有内容都将自动复制到构建目录。