Force Internet Explorer to use a specific Java Runtime Environment install? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T08:20:32Z http://stackoverflow.com/feeds/question/71254 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/71254/force-internet-explorer-to-use-a-specific-java-runtime-environment-install 2 Force Internet Explorer to use a specific Java Runtime Environment install? Mark MacIver 2008-09-16T11:07:28Z 2009-06-16T22:58:08Z <p>When viewing someone else's webpage containing an applet, how can I force Internet Explorer 6.0 to use a a particular JRE when I have several installed?</p> http://stackoverflow.com/questions/71254/force-internet-explorer-to-use-a-specific-java-runtime-environment-install/71329#71329 2 Answer by Brent Plump for Force Internet Explorer to use a specific Java Runtime Environment install? Brent Plump 2008-09-16T11:20:13Z 2008-09-18T17:08:25Z <p>For the server-side solution (which your question was originally ambiguous about), <a href="http://java.sun.com/j2se/1.5.0/docs/guide/plugin/developer_guide/using_tags.html" rel="nofollow">this page at sun</a> lists one way to specify a JRE. Specifically, </p> <pre><code>&lt;OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" width="200" height="200"&gt; &lt;PARAM name="code" value="Applet1.class"&gt; &lt;/OBJECT&gt; </code></pre> <blockquote> <p>The classid attribute identifies which version of Java Plug-in to use.</p> <p>Following is an alternative form of the classid attribute:</p> <pre><code>classid="clsid:CAFEEFAC-xxxx-yyyy-zzzz-ABCDEFFEDCBA" </code></pre> <p>In this form, "xxxx", "yyyy", and "zzzz" are four-digit numbers that identify the specific version of Java Plug-in to be used. </p> <p>For example, to use Java Plug-in version 1.5.0, you specify:</p> <pre><code>classid="clsid:CAFEEFAC-0015-0000-0000-ABCDEFFEDCBA" </code></pre> </blockquote> http://stackoverflow.com/questions/71254/force-internet-explorer-to-use-a-specific-java-runtime-environment-install/71657#71657 0 Answer by Stephen Denne for Force Internet Explorer to use a specific Java Runtime Environment install? Stephen Denne 2008-09-16T12:21:01Z 2008-09-16T12:21:01Z <p>Use the <a href="http://java.sun.com/javase/downloads/ea/6u10/deploymentToolkit.jsp" rel="nofollow">deployment Toolkit</a>'s <a href="http://java.com/js/deployJava.js" rel="nofollow">deployJava.js</a> (though this ensures a minimum version, rather than a specific version)</p> http://stackoverflow.com/questions/71254/force-internet-explorer-to-use-a-specific-java-runtime-environment-install/71717#71717 1 Answer by Stephen Denne for Force Internet Explorer to use a specific Java Runtime Environment install? Stephen Denne 2008-09-16T12:29:20Z 2008-09-16T12:29:20Z <p>If you mean when you are not the person writing the web page, then you could disable the add ons you do not wish to use with the <a href="http://windowsxp.mvps.org/addons.htm" rel="nofollow">Manage Add-Ons</a> IE Options screen added in Win XP SP2</p> http://stackoverflow.com/questions/71254/force-internet-explorer-to-use-a-specific-java-runtime-environment-install/277661#277661 1 Answer by Daniel Cassidy for Force Internet Explorer to use a specific Java Runtime Environment install? Daniel Cassidy 2008-11-10T11:27:55Z 2008-11-10T11:27:55Z <p>First, disable the currently installed version of Java. To do this, go to <strong>Control Panel > Java > Advanced > Default Java for Browsers</strong> and uncheck <strong>Microsoft Internet Explorer</strong>.</p> <p>Next, enable the version of Java you want to use instead. To do this, go to (for example) <strong>C:\Program Files\Java\<i>jre1.5.0_15</i>\bin</strong> (where <strong>jre1.5.0_15</strong> is the version of Java you want to use), and run <strong>javacpl.exe</strong>. Go to <strong>Advanced > Default Java for Browsers</strong> and check <strong>Microsoft Internet Explorer</strong>.</p> <p>To get your old version of Java back you need to reverse these steps.</p> <p>Note that in older versions of Java, <strong>Default Java for Browsers</strong> is called <strong>&lt;APPLET&gt; Tag Support</strong> (but the effect is the same).</p> <p>The good thing about this method is that it doesn't affect other browsers, and doesn't affect the default system JRE.</p> http://stackoverflow.com/questions/71254/force-internet-explorer-to-use-a-specific-java-runtime-environment-install/277693#277693 0 Answer by Jack Leow for Force Internet Explorer to use a specific Java Runtime Environment install? Jack Leow 2008-11-10T11:48:39Z 2008-11-10T11:48:39Z <p>I'd give all the responses here a try first. But I wanted to just throw in what I do, just in case these do not work for you.</p> <p>I've tried to solve the same problem you're having before, and in the end, what I decided on doing is to have only one JRE installed on my system at a given time. I do have about 10 different JDKs (1.3 through 1.6, and from various vendors - Sun, Oracle, IBM), since I do need it for development, but only one standalone JRE.</p> <p>This has worked for me on my Windows 2000 + IE 6 computer at home, as well as my Windows XP + Multiple IE computer at work.</p>