当您在 Netbeans 7 中进行 Clean 和 Build 时,如何将 .java 文件和 .html 文件包含在 .jar 文件中?
如果 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先在 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");