如何让 Java 在 chromium 或 firefox 中工作

如何让 Java 在 chromium 或 firefox 中工作

我更新了 Java(版本 1.8.0_25),现在我似乎无法让它在 chromium 或 FireFox 中工作。

Firefox 和 Chromium 的 java 插件不再列出。

改回来(通过 update-alternatives --config )似乎没有做任何事情。

Firefox 版本为 33,Chromium 版本为 34

答案1

手动安装 java 的方法如下:下载java

step 1: Download java for your system (i.e for 32 bit or 64 bit machine) 
step 2: Open Terminal and go to path where java is downloaded. it may be in downloaded to ~/Downloads. so cd ~/Downloads
step 3: now we will create directory called ‘java’ in /usr.
sudo mkdir /usr/java
step 4: Now we will move ‘jre…tar.gz’ to ‘/usr/java’.
sudo mv <JRE>…tar.gz /usr/java
Go to ‘/usr/java’ directory
cd /usr/java
step 5: We will extract now
sudo tar -zxvf <JRE>…tar.gz

The plugin file for Linux is located here:
32 bit: /usr/java/<JRE>/lib/i386/libnpjp2.so
64 bit: /usr/java/<JRE>/lib/amd64/libnpjp2.so

step 6: Now installing java plugin for mozilla. Create a symbolic link to   the Java Plugin in the Firefox plugins directory.
Open terminal follow these instructions
cd ~/.mozilla
ls To check plugins directory is present or not.
if plugins directory is not created.
mkdir plugins
cd plugins
sudo ln -s /usr/java/<JRE>/lib/<amd64|i386>/libnpjp2.so .
step 7: Restart Firefox Browser.
step 8: Verify java 

相关内容