About 153,000 results
Open links in new tab
  1. How to know the jdk version on my machine? - Stack Overflow

    Java Runtime JRE and the Java development kit JDK are two separate things. If you want to check the version of the Java compiler used within your local JDK use javac -version.

  2. How do I check what version of Java I have installed?

    Jun 20, 2017 · I want to check what version of Java is installed on my PC before installing the latest Java update. How can I do this?

  3. How to check whether java is installed on the computer

    Nov 30, 2016 · After installing Java, set the path in environmental variables and then open the command prompt and type java -version. If installed properly, it'll list the java version, jre version, etc.

  4. java - Checking Maven Version - Stack Overflow

    Jun 14, 2014 · Type the command mvn -version directly in your maven directory, you probably haven't added it to your PATH. Here are explained details of how to add maven to your PATH variable (I …

  5. java - how to check the jdk version used to compile a .class file ...

    There is -source 1.5, which assumes java 1.5 level source code, and -target 1.5, which will emit java 1.5 compatible class files. You'll probably want to use both of these switches, but you definitely need …

  6. How to check java version at linux (RedHat6) - Stack Overflow

    Dec 4, 2017 · To check which version of Java is installed, follow this procedure: -Open a Linux command prompt. -Enter the command java -version. -If Java version is installed on your system, …

  7. java - Which JRE am I using? - Stack Overflow

    Dec 17, 2019 · There are two varieties of JRE available. Java VM: IBM vs. Sun. Is there a way to know which JRE I am using through JavaScript or some Java issued command.

  8. "java -version" not working in command prompt - Stack Overflow

    Oct 3, 2013 · I downloaded this Java JDK and installed it. But when I go to the command prompt to check the version, it says it's not recognized. Is anyone else experiencing this issue with the latest …

  9. "java -version"in cmd gives no result - Stack Overflow

    Dec 17, 2020 · Important - Open a new cmd window and use the command java -version. Any already open cmd windows do not reflect the settings that you do in the environment variables form/window.

  10. installation - How to find out JavaFX version - Stack Overflow

    Apr 24, 2014 · Is there any way to find out which JavaFX version is installed. And I DON'T mean programmatically via System.getProperty("javafx.runtime.version") , which returns an empty string on …