我正在寻找一种在Netbeans中导出.jar文件的方法。我知道当我清理/构建它时会自动将所有内容放在dist目录中的.war文件中。但是,在Eclipse中,您可以选择Export - >出口 - > Java - >单击JAR文件并单击下一步,仅选择要导出的资源,然后选择要将.jar文件导出到的位置。在Netbeans中有没有相同的东西?
答案 0 :(得分:1)
您可以在编译后启用"构建JAR" Netbeans的财产
档案>项目属性>构建>包装
答案 1 :(得分:0)
我最后只是通过在dist文件夹中获取.war文件来构建项目 然后我使用了一个名为IZArc的zip程序:http://www.izarc.org/来打开.war,只得到我需要构建.jar的东西。然后我再次使用IZArc创建.jar文件 如果有人知道更简单的方法(最好是通过Netbeans本身),请告诉我。
答案 2 :(得分:0)
如果您知道如何编写Ant文件,请编辑build.xml并添加-post-dist目标。然后,在创建war文件时也会创建jar文件。类似的东西:
<target name="-post-dist" description="Create jar file.">
<!-- Copy your files to a temp directory if necessary. -->
<copy ...>
...
</copy>
<!-- 'basedir' should be the directory from which to jar the files -->
<jar destfile="${dist.dir}/app.jar" basedir="${build.dir}/myjarfiles"/>
</target>