How to check java version on different operating systems
Many times we need to check the version of java installed on the system due to the following reasons Check if java is installed even or not. Know if the installed java will support some feature or it contains newly added classes or not. How to check java version from command line Open command prompt on windows or terminal on linux and mac systems, type the following command and hit enter. java -version If java is added to the system’s classpath, then it will show following output. C:\>java -version openjdk 14-jpackage 2020-03-17 OpenJDK Runtime Environment (build 14-jpackage+1-8) OpenJDK 64-Bit Server VM (build 14-jpackage+1-8, mixed mode,Read More →