使用 javascript 检测 IE6 上的 java/jre

发布于 2024-12-08 13:54:17 字数 182 浏览 0 评论 0原文

我想知道除了使用Java部署工具包(getJRE())之外,是否还有其他方法可以确定IE6上是否安装了JRE。我尝试使用navigator.javaEnabled(),但无论是否安装JRE它都会返回true。此外,navigator.plugins[i].name 在 IE6 上返回未定义的对象。

I want to know if there is an alternative way to find out if JRE is installed on IE6, besides using the Java deployment toolkit (getJRE()). I tried to use navigator.javaEnabled(), but it returns true no matter if JRE is installed or not. Moreover, navigator.plugins[i].name returns undefined object on IE6.

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

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

发布评论

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

评论(2

作妖 2024-12-15 13:54:18

从小程序:

System.getProperty("java.version");
System.getProperty("java.vendor");

然后您需要使用 LiveConnect 从 javascript 获取该数据。

编辑:
我在这个 链接

From an applet:

System.getProperty("java.version");
System.getProperty("java.vendor");

Then you need to get that data from javascript using LiveConnect.

EDIT:
I founded a post with this method in this link

明月松间行 2024-12-15 13:54:18

这看起来不太好看,但它在 ie6 上对我有用,你可以尝试捕获错误,然后甚至使用定义 java 对象的 var 来再次检查。

try {
var j = new java.util.Date();
}
catch(err) {
document.write('no java'); // example
}

alert(j) // undefined

页面 RIA 部署建议

http://download.oracle .com/javase/6/docs/technotes/guides/jweb/deployment_advice.html

This isnt a nice looking but it works for me on ie6 you could try and catch if error and then even use the var defining the java object as well to check again.

try {
var j = new java.util.Date();
}
catch(err) {
document.write('no java'); // example
}

alert(j) // undefined

there the page RIA Deployment Advice

http://download.oracle.com/javase/6/docs/technotes/guides/jweb/deployment_advice.html

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