Sykje yn Support

Mij stipescams. Wy sille jo nea freegje in telefoannûmer te beljen, der in sms nei ta te stjoeren of persoanlike gegevens te dielen. Meld fertochte aktiviteit mei de opsje ‘Misbrûk melde’.

Learn More

Dizze konversaasje is argivearre. Stel in nije fraach as jo help nedich hawwe.

choose java version

  • 1 antwurd
  • 1 hat dit probleem
  • 1 werjefte
  • Lêste antwurd fan fredjm31

more options

Hello everybody.

On Linux CentOS 7.1.1503, I have Firefox 31.4.0 and Java 1.7 installed by default. I need to have Java 1.6 used by Firefox.

I installed Java 1.6 rpm. As suggested here : - https://wiki.centos.org/HowTos/JavaRuntimeEnvironment (chapter Java x86_64 JRE and plugin) In - /usr/lib64/mozilla/plugins/ I created a symlink that points to - /usr/java/latest/lib/amd64/libnpjp2.so (located in JRE 1.6).

When I display "about:addons", Java 1.6 is listed, BUT, when a load a simple HTML page (see code below) aimed to display Java version _really_ used, 1.7 is displayed.

Thanks for advance for your help. Frederic.

--- HTML code ---


<title> A Simple Program </title> Java Version : <APPLET CODE="JavaVersion.class" WIDTH=250 HEIGHT=75> </APPLET>


--- JavaVersion.java ---

import java.applet.Applet; import java.awt.Graphics; public class JavaVersion extends Applet {

   public void paint(Graphics g) {
       String version = System.getProperty("java.version");
       g.drawString(version, 10, 10);
   }

}

Hello everybody. On Linux CentOS 7.1.1503, I have Firefox 31.4.0 and Java 1.7 installed by default. I need to have Java 1.6 used by Firefox. I installed Java 1.6 rpm. As suggested here : - https://wiki.centos.org/HowTos/JavaRuntimeEnvironment (chapter Java x86_64 JRE and plugin) In - /usr/lib64/mozilla/plugins/ I created a symlink that points to - /usr/java/latest/lib/amd64/libnpjp2.so (located in JRE 1.6). When I display "about:addons", Java 1.6 is listed, BUT, when a load a simple HTML page (see code below) aimed to display Java version _really_ used, 1.7 is displayed. Thanks for advance for your help. Frederic. --- HTML code --- <HTML> <HEAD> <TITLE> A Simple Program </TITLE> </HEAD> <BODY> Java Version : <APPLET CODE="JavaVersion.class" WIDTH=250 HEIGHT=75> </APPLET> </BODY> </HTML> --- JavaVersion.java --- import java.applet.Applet; import java.awt.Graphics; public class JavaVersion extends Applet { public void paint(Graphics g) { String version = System.getProperty("java.version"); g.drawString(version, 10, 10); } }

Keazen oplossing

I found the solution. I (also) had IcedTeadPlugin, which actually points to JRE 1.7. So, it was loaded instead of JRE 1.6.

Dit antwurd yn kontekst lêze 👍 0

Alle antwurden (1)

more options

Keazen oplossing

I found the solution. I (also) had IcedTeadPlugin, which actually points to JRE 1.7. So, it was loaded instead of JRE 1.6.