博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
netbeans打包成jar
阅读量:6614 次
发布时间:2019-06-24

本文共 1140 字,大约阅读时间需要 3 分钟。

文件页里找到build.xml文件,打开在</project>前 加入以下代码保存之

 

按 Ctrl+C 复制代码
<target name="package-for-store" depends="jar"> <!-- Change the value of this property to be the name of your JAR, minus the .jar extension. It should not have spaces. <property name="store.jar.name" value="MyJarName"/> --> <property name="store.jar.name" value="SwitchHexAndChinese"/> <!-- don't edit below this line --> <property name="store.dir" value="store"/> <property name="store.jar" value="${store.dir}/${store.jar.name}.jar"/> <echo message="Packaging ${application.title} into a single JAR at ${store.jar}"/> <delete dir="${store.dir}"/> <mkdir dir="${store.dir}"/> <jar destfile="${store.dir}/temp_final.jar" filesetmanifest="skip"> <zipgroupfileset dir="dist" includes="*.jar"/> <zipgroupfileset dir="dist/lib" includes="*.jar"/> <manifest> <attribute name="Main-Class" value="${main.class}"/> </manifest> </jar> <zip destfile="${store.jar}"> <zipfileset src="${store.dir}/temp_final.jar" excludes="META-INF/*.SF, META-INF/*.DSA, META-INF/*.RSA"/> </zip> <delete file="${store.dir}/temp_final.jar"/> </target>
按 Ctrl+C 复制代码

 

build.xml右键即可打包生成SwitchHexAndChinese.jar

 

生成的文件

转载地址:http://cpaso.baihongyu.com/

你可能感兴趣的文章
清晨练习-面向对象实践
查看>>
禁用Linux下ctrl+alt+del操作系统参数
查看>>
实时计算框架之二:Storm之入门实例
查看>>
我的友情链接
查看>>
Ubuntu制作动态壁纸
查看>>
tcpdump抓包脚本
查看>>
用友U821不能启动服务的问题解决
查看>>
并发连接数、请求数、并发用户数
查看>>
HTML页面设置不缓存
查看>>
跨网段文件和打印机共享的防火墙设置小技巧
查看>>
Java抽象类和接口
查看>>
memcached 安装使用
查看>>
《诗经·邶风·击鼓》
查看>>
CentOS新手必备:Linux vi命令
查看>>
教程:Win10预览版10056如何升级到10061
查看>>
VSS安装使用
查看>>
合并两个不相关的Git仓库
查看>>
Mac OSX操作系统安装和配置Zend Server 6教程(3)
查看>>
缔造程序兼容的契约(ABI)
查看>>
oracle pivot 和 unpivot 函数的使用
查看>>