How to check java version in linux

0 votes
What are the steps to determine the version of Java installed on a Linux system, and how can one ensure that the detected version is correctly configured for use?
Oct 27, 2023 in Java by Saniya
• 3,320 points
459 views

1 answer to this question.

0 votes

Checking your Java version on a Linux machine can be done through the terminal using the following steps:

1. Open Terminal: You can open the terminal by searching for it in your system's applications menu, or by using the keyboard shortcut `Ctrl` + `Alt` + `T`.

2. Check Java Version: Once the terminal is open, type the following command and press Enter:  

 ```bash
     java -version
     ```

This command will display the version of Java that is currently in use on your machine.

3. Check All Installed Java Versions (Optional):
   If you have multiple versions of Java installed, you can use the following command to list all installed Java versions:

    ```bash
     update-java-alternatives --list
     ```

This will display a list of all installed Java versions along with their installation paths.

4. Check the Default Java Compiler (Optional):
   If you want to check the version of the default Java compiler (javac), use the following command:

     ```bash
     javac -version
     ```

This will display the version of the default Java compiler.

These commands should provide you with the information you need regarding the Java version(s) installed on your Linux machine.

answered Nov 2, 2023 by anonymous

Related Questions In Java

0 votes
3 answers

How to check whether a file exists or not in Java?

Using nio we can check whether file ...READ MORE

answered Aug 14, 2018 in Java by Sushmita
• 6,910 points
3,588 views
+1 vote
1 answer

How to tell the Maven to use the latest version of dependency in Java?

If you always want to use the ...READ MORE

answered Jun 26, 2018 in Java by Sushmita
• 6,910 points
14,749 views
0 votes
1 answer
0 votes
3 answers

How to check if a String is numeric in Java?

Check if a string is numeric public class ...READ MORE

answered Dec 29, 2020 in Java by Carlos
2,310 views
+5 votes
4 answers

How to execute a python file with few arguments in java?

You can use Java Runtime.exec() to run python script, ...READ MORE

answered Mar 27, 2018 in Java by DragonLord999
• 8,450 points

edited Nov 7, 2018 by Omkar 79,595 views
0 votes
2 answers

How can I convert a String variable to a primitive int in Java

 Here are two ways illustrating this: Integer x ...READ MORE

answered Aug 20, 2019 in Java by Sirajul
• 59,230 points
1,928 views
0 votes
5 answers

How to compare Strings in Java?

String fooString1 = new String("foo"); String fooString2 = ...READ MORE

answered Jul 12, 2018 in Java by Daisy
• 8,120 points
2,186 views
+1 vote
2 answers

How to generate random integers within specific range in Java?

You can achieve that concisely in Java: Random ...READ MORE

answered Jul 25, 2018 in Java by samarth295
• 2,220 points
989 views
0 votes
1 answer

How to create immutable class in Java?

To create an immutable class in Java, ...READ MORE

answered Oct 16, 2023 in Java by anonymous
• 3,320 points

edited Oct 19, 2023 by anonymous 199 views
0 votes
1 answer

how to run java program in notepad?

To run a Java program in Notepad: Write ...READ MORE

answered Oct 17, 2023 in Java by anonymous
• 520 points
252 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP