G Gabriel Turqos Active Member Joined Mar 11, 2019 Messages 17 May 28, 2020 Thread Author #1 I have a Java installation and I have only access via bash. How can I check the Java version from command line.
I have a Java installation and I have only access via bash. How can I check the Java version from command line.
Solution R R RuskinF Jun 24, 2020 To know whether you're running Java 5, 6 or 7, firstly type java -version. There will be a line in your output that looks similar to this: java version "1.7.0_55" Then you use this table for converting the 'jargon' result to the version number. 1.7.0_55 is Java 7 1.6.0_75 is Java 6 1.5.0_65 is Java 5
To know whether you're running Java 5, 6 or 7, firstly type java -version. There will be a line in your output that looks similar to this: java version "1.7.0_55" Then you use this table for converting the 'jargon' result to the version number. 1.7.0_55 is Java 7 1.6.0_75 is Java 6 1.5.0_65 is Java 5
patcooke Microsoft MVP Microsoft MVP Joined May 16, 2010 Messages 5,703 May 28, 2020 #2 try java -version Upvote 0 Downvote
edizgeorgi Active Member Joined May 31, 2019 Messages 17 Jun 1, 2020 #3 You can use the -version parameter for the java command like below. java -version Reference: How To Check Java Version Upvote 0 Downvote
You can use the -version parameter for the java command like below. java -version Reference: How To Check Java Version
R RuskinF Member Joined Feb 17, 2020 Messages 87 Jun 24, 2020 #4 To know whether you're running Java 5, 6 or 7, firstly type java -version. There will be a line in your output that looks similar to this: java version "1.7.0_55" Then you use this table for converting the 'jargon' result to the version number. 1.7.0_55 is Java 7 1.6.0_75 is Java 6 1.5.0_65 is Java 5 Upvote 1 Downvote Solution
To know whether you're running Java 5, 6 or 7, firstly type java -version. There will be a line in your output that looks similar to this: java version "1.7.0_55" Then you use this table for converting the 'jargon' result to the version number. 1.7.0_55 is Java 7 1.6.0_75 is Java 6 1.5.0_65 is Java 5