如何检查我是否安装了用于小程序的 java 6 插件 2?

发布于 2024-07-17 00:06:55 字数 46 浏览 3 评论 0原文

另外,创建使用 java 6 插件 2 的小程序与创建普通小程序有什么不同吗?

Also, is creating an applet that uses the java 6 plugin 2 thing any different than creating a normal applet?

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

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

发布评论

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

评论(1

狼性发作 2024-07-24 00:06:55

请参阅 Java 文档,了解 Applet 和对象标记。 特别要查看对象标记的“类 ID”属性的文档。 您想要使用这样的 classid 标签:

classid="clsid:CAFEEFAC-xxxx-yyyy-zzzz-ABCDEFFEDCBA" 

where

xxxx = 0016
yyyy = 0000
zzzz = 0002

和 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:

classid="clsid:CAFEEFAC-xxxx-yyyy-zzzz-ABCDEFFEDCBA" 

where

xxxx = 0016
yyyy = 0000
zzzz = 0002

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.

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