将 Java 小程序嵌入到我的网页中的最佳方法是什么?
我一直在考虑在我的网页中放置一个小型 Java 应用程序,但是我做的研究越多,我对应该如何做就越困惑。 Sun 建议多种方法这样做,但它看起来很可疑,像是来自 Netscape 时代。
那么,我应该按照 Eclipse 的建议使用
我应该如何使用正确的标签?
I've been looking into putting a little Java application in my web page, but the more research I do, the more confused I become about how I should do it. Sun suggests many ways of doing it, but it looks suspiciously like it's from the Netscape era.
So, should I use <applet>
, as suggested by eclipse, <embed>
, or <object>
?
And how should I use the correct tag?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
自 Java 6 Update 10 以来,他们发布了 Java部署工具包:
Since Java 6 Update 10 they've released a Java Deployment Kit:
好吧,如果您想严格遵循标准,请快速查看 W3C 标准 指出 applet 已被弃用,您应该使用 object 代替。
Well if you want to strictly follow standards then a quick look here at the W3C standards says that applet is depreciated and you should use object instead.