当您在 Netbeans 7 中进行 Clean 和 Build 时,如何将 .java 文件和 .html 文件包含在 .jar 文件中?

发布于 2025-01-07 18:44:40 字数 146 浏览 1 评论 0原文

如果 build/classes/folderToJar 中有文件,当您进行 Clean 和 Build 时,Netbeans7 会获取 .class 文件并创建 .jar 文件。

但是如何才能将 .java 文件和 .html 文件也放入 .jar 文件中呢?

If you have files in the build/classes/folderToJar Netbeans7 takes the .class files and make a .jar file when you take Clean and Build.

But how can you have .java files and .html files go into the .jarfile as well?

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

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

发布评论

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

评论(1

一梦等七年七年为一梦 2025-01-14 18:44:40

首先在 Source Packages 下创建一个包(比如 html),

将所有 html 文件复制到此包中(创建包时,将在项目 src 文件夹中创建一个以您的包名称命名的文件夹,因此将文件复制到其中)

您可以从程序中访问 html 文件,

网址为 someURL = yourclass.class.getResource("/html/yourhtml.html");

First Create a package(Say html) under Source Packages

copy all of your html files to this package(when you create a package,a folder in the name of your package will be created inside your project src folder, so copy files to it)

You can access your html file from your program as

URL someURL = yourclass.class.getResource("/html/yourhtml.html");

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