You can open a terminal and just type
java -version // this will check your jre version javac -version // this will check your java compiler version if you installed
this should show you the version of java installed on the system (assuming you installed the java path in the system environment).
And if you didnβt, add it through
export JAVA_HOME=/path/to/java/jdk1.x
and if you donβt know that you have java at all on your system, just use find in the terminal
i.e. find / -name "java"
Maciej Cygan Apr 24 '14 at 11:31 2014-04-24 11:31
source share