包装代码 +属性文件
我的 java 应用程序中有包.. a、b 和 c。我为我的应用程序设置了一个资源文件夹,它包含包 x、y、z。
我需要将 a、b 中的文件和 x 中的属性文件打包为 jar。 我使用的是net beans 6.5。我该如何实现这个目标!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不确定 Netbeans 特定的情况,但您可以通过命令行将文件添加到 jar:
更多详细信息 此处。
Not sure about Netbeans specific, but you can add the files to the jar via the command line:
More details here.
这里最好的选择是编辑 nb-build.xml(如果您从头开始创建项目,则为 build.xml)文件并添加一个 ant 目标(-pre-jar),将文件复制到构建目录中由 jar 目标添加。
Your best bet here would be to edit the nb-build.xml (or build.xml if you created the project from scratch) file and add an ant target (-pre-jar) that copies the files to the build dir where it will get added by the jar target.