vote up 3 vote down star

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

flag

4 Answers

vote up 6 vote down check

Check out the code in the Java Deployment Toolkit.

link|flag
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 at 22:42
vote up 2 vote down

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|flag
vote up 1 vote down

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

link|flag
vote up 0 vote down

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

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.