包装代码 +属性文件

发布于 2024-08-03 20:28:46 字数 135 浏览 5 评论 0 原文

我的 java 应用程序中有包.. a、b 和 c。我为我的应用程序设置了一个资源文件夹,它包含包 x、y、z。

我需要将 a、b 中的文件和 x 中的属性文件打包为 jar。 我使用的是net beans 6.5。我该如何实现这个目标!

I have packages.. a, b and c in my java application. I have a resources folder set for my application and it contains packages x, y, z.

I need to package files in a,b and property file in x as a jar.
I am using net beans 6.5. How do I achieve this!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

长不大的小祸害 2024-08-10 20:28:46

不确定 Netbeans 特定的情况,但您可以通过命令行将文件添加到 jar:

jar uf jar-file input-file(s)

更多详细信息 此处

Not sure about Netbeans specific, but you can add the files to the jar via the command line:

jar uf jar-file input-file(s)

More details here.

机场等船 2024-08-10 20:28:46

这里最好的选择是编辑 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文