Install OpenJDK 10 on Debian 9 Stretch

28/12/2020
In short, Java Development Kit (JDK) is used to compile Java source code into Java byte code. Then Java Runtime Environment (JRE) translates the Java byte code into machine language and runs Java programs. If you install JDK, you don’t have to install JRE separately. But if you wish to only run Java programs, not to develop them, then you may install it separately.

There are 2 versions of JDK. Oracle JDK and OpenJDK. All the components of OpenJDK are open source. The same does not go with Oracle JDK. Some components of Oracle JDK are proprietary. This is why some people prefer OpenJDK over Oracle JDK.

OpenJDK 10 recently just came out. So in this article I am going to show you how to install it in Debian 9 Stretch. Let’s get started.

Downloading OpenJDK 10

In this section, I will show you how to download OpenJDK 10 from the official website of OpenJDK.

First go to the official website of OpenJDK 10 at http://jdk.java.net/10/ and you should see the following page as shown in the screenshot below.

Scroll down a little bit to the Downloads section. Click on the link as marked in the screenshot below to download the 64-bit Linux version of OpenJDK 10 tar.gz archive.

Click on Save File and then click on OK.

Your download should start as shown in the screenshot below.

Installing OpenJDK 10

Once your download is complete, you should find it in the default Downloads directory of your web browsers. In my case, it’s the Downloads/ directory in my user’s HOME directory.

First, navigate to the Downloads/ directory with the following command:

$ cd ~/Downloads

Now if you list the directory contents with ls -lh command, you should find the OpenJDK 10 tar archive as shown in the marked section of the screenshot below.

Now you have to extract the tar archive. I am going to extract it in my /opt directory. You may wish to choose another directory. You’re free to do so.

$ sudo tar xvzf openjdk-10_linux-x64_bin.tar.gz -C INSTALL_DIR

The tar archive should be extracted.

Now if you list your INSTALL_DIR, in my case it’s the /opt directory, you should see jdk-10/ directory as marked in the screenshot below.

Now you have to add it to the PATH of your Debian 9 operating system. That way you don’t have to type in the whole path to your OpenJDK 10 binary files in order to compile or run Java programs.

Run the following command to create a new file jdk10.sh in /etc/profile.d directory:

$ sudo nano /etc/profile.d/jdk10.sh

You should see the following window.

Now add the following lines to the file:

export JAVA_HOME="NSTALL_DIR/jdk-10"
export PATH="$PATH:${JAVA_HOME}/bin"

The INSTALL_DIR in my case it /opt

Now press <Ctrl> + x, then press y and then press <Enter> to save the file.

Once the file is saved, reboot your computer with the following command:

$ sudo reboot

Once your computer starts, run the following command to test whether the JAVA_HOME environment variable is available:

$ echo $JAVA_HOME

As you can see in the screenshot below, it’s set to the correct path.

You can also check the PATH environment variable with the following command:

$ echo $PATH

As you can see in the marked section of the screenshot below, the OpenJDK 10’s bin/ directory is added to the PATH.

Now run the following command to check whether OpenJDK is working or not:

$ javac version

As you can see in the screenshot below, OpenJDK 10 is working correctly.

Compiling and Running a Java Program with OpenJDK 10

In this section, I will compile and run a simple Java program with OpenJDK 10 to show you that OpenJDK 10 is working correctly.

This is my simple hello world program saved in ~/Documents/codes/HelloWorld.java file.

public class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Hello World from LinuxHint!");
    }
}

Compiling HelloWorld.java with OpenJDK 10

First navigate to the directory where the file is saved with the following command:

$ cd ~/Documents/codes

Now to compile HelloWorld.java Java source file, run the following command:

$ javac HelloWorld.java

Running HelloWorld with OpenJDK 10

Once the HelloWorld.java file is compiled, a HelloWorld.class file is generated. This is the Java byte code file that you run with the java command as follows:

$ java HelloWorld

NOTE: If the Java byte code filename is HelloWorld.class, you run java HelloWorld. You must not include .class extension. Otherwise it won’t work.

As you can see, the Java program ran successfully and displayed the correct output.

So that’s how you install OpenJDK 10 on Debian 9 Stretch. Thank you for reading this article.

ONET IDC thành lập vào năm 2012, là công ty chuyên nghiệp tại Việt Nam trong lĩnh vực cung cấp dịch vụ Hosting, VPS, máy chủ vật lý, dịch vụ Firewall Anti DDoS, SSL… Với 10 năm xây dựng và phát triển, ứng dụng nhiều công nghệ hiện đại, ONET IDC đã giúp hàng ngàn khách hàng tin tưởng lựa chọn, mang lại sự ổn định tuyệt đối cho website của khách hàng để thúc đẩy việc kinh doanh đạt được hiệu quả và thành công.
Bài viết liên quan

Install OpenJDK 10 on Debian 9 Stretch

In short, Java Development Kit (JDK) is used to compile Java source code into Java byte code. Then Java Runtime Environment...
28/12/2020

Tess4J Tutorial with Maven And Java

In today’s era when the data is ever growing, the people who deal with data everyday work mostly with unstructured textual...
29/12/2020

Ant vs Maven vs Gradle

Choosing the Right Build Tool: Ant vs Maven vs Gradle During software development, developers have to rebuild the same...
28/12/2020
Bài Viết

Bài Viết Mới Cập Nhật

SỰ KHÁC BIỆT GIỮA RESIDENTIAL PROXY VÀ PROXY DATACENTER
17/02/2024

Mua Proxy v6 US Private chạy PRE, Face, Insta, Gmail
07/01/2024

Mua shadowsocks và hướng dẫn sữ dụng trên window
05/01/2024

Tại sao Proxy Socks lại được ưa chuộng hơn Proxy HTTP?
04/01/2024

Mua thuê proxy v4 nuôi zalo chất lượng cao, kinh nghiệm tránh quét tài khoản zalo
02/01/2024