如何允许两个使用不同 jre 的小程序工作
有两个小程序。
- 小程序 A 需要 1.6+
- 小程序 B 在 1.6 中不起作用(1.4 有效)
我如何让它们都工作?
Got two applets.
- Applet A requires 1.6+
- Applet B doesn't work in 1.6 (1.4 works)
How do I get them both to work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果我可以控制小程序 B,我可以指定它使用 1.4 JRE。
http://java.sun.com/javase/6/webnotes/ family-clsid.html
If I could control applet B, I could specify it to use the 1.4 JRE.
http://java.sun.com/javase/6/webnotes/family-clsid.html
从 6u10 开始,有一个进程外插件。 这允许多个 JRE 进程运行,因此版本选择可以选择多个 JRE 版本。
更好:让 Applet B 在 1.6 上运行。
From 6u10 there is an out-of-process plug-in. This allows multiple JRE processes to run and so version selection can select more than one JRE version.
Better: Make Applet B run on 1.6.