在netbeans中将一个jar文件包含在另一个jar文件中

发布于 2024-09-24 22:09:17 字数 185 浏览 2 评论 0 原文

我创建了一个小程序并在 Netbeans 中制作了它的 jar 文件。我在小程序中使用 jar 文件。 我在 jsp 页面中调用 applet.jar。该小程序工作正常,但它必须实现的功能是通过我在该小程序中使用的另一个 jar 文件。意味着如何在 applet.jar 中包含外部 jar 文件,以便当我运行 jsp 页面时它也可用于该 jsp 页面。

I have created an applet and made its jar file in Netbeans. i am using a jar file in an applet.
I am calling the applet.jar in a jsp page. The applet works fine but the functionality it has to be achieved is through the another jar file which i was using in that applet. means how to include an external jar file in applet.jar so that it could also be available to that jsp page also when i will run the jsp page.

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

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

发布评论

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

评论(1

最初的梦 2024-10-01 22:09:17

如果您只需要为您的 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

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