up vote 4 down vote favorite
share [g+] share [fb]

Is there a reliable way of detecting what version of Java is installed on the client's machine using JavaScript?

link|improve this question
feedback

7 Answers

up vote 9 down vote accepted

Check out the code in the Java Deployment Toolkit.

link|improve this answer
In case someone comes across this again, note the toolkit has a major flaw: it returns the highest version of Java that is installed on the machine, not the highest version that is actually runnable (in IE, at any rate). Specifically, if you have both a Sun JRE and MSJVM installed, the toolkit will report the Sun JRE version even if it's disabled and the browser will actually run MSJVM. Adam Bellaire's link below seems more reliable, albeit less "clean" because it requires running an actual applet. – Dan Nov 19 '09 at 22:42
feedback

Googling for

detect "java version" using javascript

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.

link|improve this answer
5  
Ironically, this page is now the first search result on Google for detect "java version" using javascript – kingjeffrey Apr 20 '10 at 16:31
feedback

You can use the PluginDetect library from here: http://www.pinlady.net/PluginDetect/

link|improve this answer
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

link|improve this answer
feedback

according to the fact that we're finding this page with google, just to help the next guys finding this.

Is java installed ?

navigator.javaEnabled()

http://www.w3schools.com/jsref/met_nav_javaenabled.asp

Which version of java is installed ?

<script src="http://www.java.com/js/deployJava.js"></script>
<script>
var versions = deployjava.getJREs();
</script>

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

link|improve this answer
That does not give any information about the version (which the question is about). – Felix Kling Aug 6 '11 at 10:19
You're right, I didn't answer where I thought I was. Fixed my answer. – sarlak Aug 17 '11 at 7:11
feedback

If you use Google Analytics, this post might be helpful (see the forum thread for more details).

link|improve this answer
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown