Installing Java 7 on Ubuntu

后端 未结 10 1374
温柔的废话
温柔的废话 2020-11-29 14:12

to install java I have always used the classic way from the terminal. I would like to install java manually. I placed the folder of the JDK on the desk and I set environment

10条回答
  •  眼角桃花
    2020-11-29 15:15

    sudo apt-get update
    sudo apt-get install openjdk-7-jdk
    

    and if you already have other JDK versions installed

    sudo update-alternatives --config java
    

    then select the Java 7 version.

提交回复
热议问题