How to check jre version in eclipse?

How to check which version of JRE using eclipse?

This section:

Window ---> Settings ---> Java

shows the JDK name:

enter image description here

+6
source share
4 answers

Open the About Eclipse dialog box (Help β†’ About Eclipse on Windows, Eclipse β†’ About Eclipse on OS X)

About Eclipse dialog

Click on "Installation Information", select the "Configuration" tab and scroll down to the entry "java.home". Value is the name of the path to the JVM used.

enter image description here

+9
source

To find out which Java Eclipse is using, go to Help > About Eclipse click Installation Details and go to the Configuration tab.

When you run Java programs from Eclipse, you can choose which Java to use. Preferences > Installed JREs lists the Preferences > Installed JREs (and JDKs) that Eclipse knows about. Run Configuration for a program shows which Java is used to run the program.

+5
source

See the following figure.

click on Run from menu bar -> select Run Configuration

Select JRE on tab

+2
source

Go to window-> Preferences-> Installed JRES

or Go to project, right-click Preference β†’ Jva Build Path β†’ Libraries

0
source

All Articles