getJREs Test




If you're using Chrome, it will probably appear a message bar like this:

So first enable Java execution by clicking "Run this time" or "Always run on this site" button. After that just click the Test button below to see what JRE versions your browser can see in your PC.



The method for getting it is the one provided by Java Deployment Toolkit Script. If you got more than one version, sometimes Chrome won't correctly see them all, as explained in this post.
After testing it with Chrome, go ahead and test it with other browsers. Below is the code of this test page: <script type="text/javascript" src="http://java.com/js/deployJava.js"></script><br /> <script type="text/javascript"> function test() { var vmList = deployJava.getJREs(); var out = "VMs quantity: " + vmList.length + "\n"; for ( var i = 0; i < vmList.length; i++) { out += vmList[i] + "\n"; } alert(out); } </script> ps: the funny thing is that if you click the Test button before enabling Java execution, the result is different. To me it gives only the most recent version...