Answers for "how to see java version windows"

23

java check java version

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

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 see java version windows"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language