WebUpd8

WebUpd8

我有 Ubuntu 14.04,我需要最新版本的 Java JRE 来运行某些游戏,但我有旧版本,我不知道如何更新它。我尝试从https://java.com/download但我无法摩擦下载的文件,也试图看其他人的问题,但我无法真正理解它们。我收到的错误是“该应用程序需要 Java 运行环境 1.6.0”这是错误的屏幕截图: https://i.stack.imgur.com/Sh7GU.png

答案1

WebUpd8

Webupd8 提供苯甲酸在 Launchpad 上为所有当前 Ubuntu 版本提供 Java 安装程序。

PPA 描述:

Oracle Java (JDK) Installer (automatically downloads and installs Oracle JDK7 / JDK8 / JDK9). There are no actual Java files in this PPA.

More info (and Ubuntu installation instructions):
- for Oracle Java 7: http://www.webupd8.org/2012/01/install-oracle-java-jdk-7-in-ubuntu-via.html
- for Oracle Java 8: http://www.webupd8.org/2012/09/install-oracle-java-8-in-ubuntu-via-ppa.html

Debian installation instructions:
- Oracle Java 7: http://www.webupd8.org/2012/06/how-to-install-oracle-java-7-in-debian.html
- Oracle Java 8: http://www.webupd8.org/2014/03/how-to-install-oracle-java-8-in-debian.html

Important!!! For now, you should continue to use Java 8 because Oracle Java 9 is available as an early access release (it should be released in 2016)! You should only use Oracle Java 9 if you explicitly need it, because it may contain bugs and it might not include the latest security patches! Also, some Java options were removed in JDK9, so you may encounter issues with various Java apps. More information and installation instructions (Ubuntu / Linux Mint / Debian): http://www.webupd8.org/2015/02/install-oracle-java-9-in-ubuntu-linux.html

如果您需要 Java 8 - 只需执行以下操作:

sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java8-installer

答案2

您可以使用default-jre与 openjdk-jre 基本相同的简单包:

验证 Java 是否已安装

正如你之前尝试过的许多方法一样,你需要检查 Java 是否尚未安装

java -version

如果它返回,The program java can be found in the following packages您可以继续执行下一步。

安装默认 JRE

首先,更新包索引

sudo apt-get update

然后使用以下命令安装 JREapt-get

sudo apt-get install default-jre

安装 JDK

您可能需要安装 JDK,它通常是编译 Java 应用程序所必需的

sudo apt-get install default-jdk

您也可以安装其他版本的 JDK,OpenJDK例如Oracle JDK

答案3

您可以尝试从安装 openjdk-6 版本软件中心或者直接通过这样的终端

sudo apt-get install openjdk-6-jre

希望有所帮助。

问候道格拉斯

答案4

您是否已尝试安装 openjdk-7-jre?

sudo apt-get install openjdk-7-jre

相关内容