使用 eclipse 部署 Java Applet

发布于 2024-11-05 11:20:46 字数 452 浏览 5 评论 0 原文

我试图让一个java网站和java小程序一起运行。我已经设置了一个 eclipse tomcat 项目并创建了一个 java applet,它在 AppletViewer 中运行良好。但是我在浏览器中启动小程序时遇到问题。

WebContent 文件夹缺少 AppletMain.class 使其正确部署的最佳方法是什么?

Eclipse 项目:

Eclipse Project

Applet 源文件:

在此处输入图像描述

index.jsp

在此处输入图像描述

I'm try to get a java website and java applet up and running together. I've setup an eclipse tomcat project and created a java applet, which runs fine in the AppletViewer. However i'm having trouble launching the applet in the browser.

AppletMain.class is missing for the WebContent folder what is the best way to get it to deploy correctly?

Eclipse project:

Eclipse Project

Applet source file:

enter image description here

index.jsp

enter image description here

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

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

发布评论

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

评论(1

£噩梦荏苒 2024-11-12 11:20:46

Applet 标记已随 对象 标签根据 W3C 规范

<OBJECT 
  classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
  width="200" height="200">
  <PARAM name="code" value="Applet1.class">
</OBJECT>

其中

  • classid 属性标识要使用的 Java 插件版本。这指示 Internet Explorer 使用最新安装的 Java 插件版本。

    classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"

Applet tag has been depreciated with Object tag according to W3C specifications.

<OBJECT 
  classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
  width="200" height="200">
  <PARAM name="code" value="Applet1.class">
</OBJECT>

where

  • the classid attribute identifies which version of Java Plug-in to use. This instructs Internet Explorer to use the latest installed version of Java Plug-in.

    classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"

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