Answers for "how to check the version of java installed on my computer"

18

java check java version

java -version  #for jre version
javac -version  # for java compiler version
Posted by: Guest on October-14-2020
2

how to check which java version i have

java -version
Posted by: Guest on June-26-2020
2

how to check if java is installed

On Windows 10:
Start > Control Panel > Program > Java

If you can't see a Java option then you don't have Java installed.
Otherwise, this should open the Java Control Panel. Click the 'About' 
button to view version information.
Posted by: Guest on August-15-2021
1

check Version of java

$ java -version
java version "1.8.0_121"
Posted by: Guest on May-24-2021
0

how to check the version of java installed on my computer

// If you have the Java Runtime Environment (JRE) version installed, run this command on your terminal(Command Prompt - for windows):
java -version

// If you have the Java Compiler version installed, run this command [still on your terminal(Command Prompt - for windows)]:
javac -version
Posted by: Guest on October-14-2021

Code answers related to "how to check the version of java installed on my computer"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language