如何检查我是否安装了用于小程序的 java 6 插件 2?
另外,创建使用 java 6 插件 2 的小程序与创建普通小程序有什么不同吗?
Also, is creating an applet that uses the java 6 plugin 2 thing any different than creating a normal applet?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅 Java 文档,了解 Applet 和对象标记。 特别要查看对象标记的“类 ID”属性的文档。 您想要使用这样的 classid 标签:
where
和 this 将指定确切的版本。 不,指定任何特定的 Java 版本与要求“安装的最新版本”没有什么不同,除了 classid 属性的值以及可能的 codebase 属性的值之外。
另请参阅 Java 6 更新中的部署建议 10. 请注意,Java 6 update 10 添加了许多重要功能,例如,允许您在浏览器之外运行 Applet。
See the Java documentation for the Applet and Object tags. Especially look at the documentation of the "class ID" attribute of the object tag. You want to use a classid tag like this:
where
and this will specify that exact version. No, specifying any specific Java version is no different than asking for the "latest version intalled" except for the value of the classid attribute and perhaps the value of the codebase attribute.
See also Deployment Advice from Java 6 update 10. Note that Java 6 update 10 adds a number of significant features that allow you, for example, to run an Applet outside of a browser.