如何在网页中嵌入Java小程序?
我正在使用以下代码将 Java 小程序嵌入网页中,
<APPLET CODE="main.class" WIDTH=500 HEIGHT=80 archive='testing.jar'>
</APPLET>
但问题是,我的小程序的类文件位于名为 environment
的包中, 这意味着我的 main.class 位于文件夹环境中。
当我使用时,浏览器向我显示无法搜索我的类文件的错误消息
CODE="main.class"
如何将其设置为引用我导出的 jar 文件中的包中的类文件?
I am using the following code to embed a Java applet in a web page,
<APPLET CODE="main.class" WIDTH=500 HEIGHT=80 archive='testing.jar'>
</APPLET>
But the problem is, the class file for my applet is in a package named environment
,
which means my main.class
is inside a folder environment.
The browser show me the error message that it can't search my class file when I use
CODE="main.class"
How can I set it to refer the class file in a package in the jar file which I export out?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能需要查看部署 Applet 和使用 Applet 标记进行部署。这是一个可能对您有帮助的小程序工作示例。该页面的 HTML 很简单:
小程序源代码为:
小程序的 打包的 jar 包含:
You'll probably want to take a look at Deploying an Applet and Deploying With the Applet Tag. Here's a small working example of an applet that might help you. The HTML for that page is simply:
The applet source code is:
And the packaged jar for the applet contains: