在netbeans中将一个jar文件包含在另一个jar文件中
我创建了一个小程序并在 Netbeans 中制作了它的 jar 文件。我在小程序中使用 jar 文件。 我在 jsp 页面中调用 applet.jar。该小程序工作正常,但它必须实现的功能是通过我在该小程序中使用的另一个 jar 文件。意味着如何在 applet.jar 中包含外部 jar 文件,以便当我运行 jsp 页面时它也可用于该 jsp 页面。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您只需要为您的 applet 代码提供一个 jar 文件,您只需从服务器托管它并在
这里有一个很好的概述,我从中举了这个例子:
<代码>
...使 /java/applet.zip 中的类可供您的应用程序使用。
更新 - Sun/Oracle 文档中有关 APPLET 标记的信息全面且易于理解,即 http://docs.oracle.com/javase/1.4.2/docs/guide/misc/applet.html
If you just need to make a jar file available to your applet code, you can just host it from your server and reference it in the
<applet>
tag. That might be easier than combining the jars, and easier to maintain.There's a nice overview here, from which I take this example:
<applet code="main.class" codebase="/java" width="100" height="100" archive="applet.zip">
</applet>
...makes the classes in /java/applet.zip available to your application.
Update - the information about the APPLET tag in the Sun/Oracle documentation is comprehensive and easy to follow, i.e. http://docs.oracle.com/javase/1.4.2/docs/guide/misc/applet.html