Is there a reliable way of detecting what version of Java is installed on the client's machine using JavaScript?
|
feedback
|
|
Check out the code in the Java Deployment Toolkit. | |||
feedback
|
|
Googling for
yields a couple of results, this one looks like it might be useful. In essence, it tries to load a Java applet and then JavaScript asks the applet. | |||||
feedback
|
|
You can use the PluginDetect library from here: http://www.pinlady.net/PluginDetect/ | |||
|
feedback
|
|
Check out the solution here. Works like a charm (atleast on the local machine.... yet to test it on different environments) http://www.spiration.co.uk/post/1186/Java%20detect%20brower,%20JVM%20vendor,%20Java%20version%20etc | |||
|
feedback
|
|
according to the fact that we're finding this page with google, just to help the next guys finding this. Is java installed ?
http://www.w3schools.com/jsref/met_nav_javaenabled.asp Which version of java is installed ?
http://java.sun.com/javase/6/docs/technotes/guides/jweb/deployment_advice.html#deplToolkit It's the best way I found to find the version of java with javascript, but use it carefully because its version detection is really os/browser dependent, and on old browser version or on recent browser with old java installed, it'll not work as expected. Take the time to do real tests before to use it in production | |||||
feedback
|
|
If you use Google Analytics, this post might be helpful (see the forum thread for more details). | |||
|
feedback
|
|
The detection logic does not work in IE32 on Windows7-64. It could not detect the java version it installed earlier. Well, after further reading, the Java Deployment Toolkit on Windows uses ActiveX classid which may pose your app to hackers (see http://www.kb.cert.org/vuls/id/886582). I am out. | ||||
|
feedback
|