Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find if the JVM installed on the machine is HotSpot or JRockit on Windows OS

Tags:

java

jvm

How to find if the JVM installed on a Windows box is HotSpot or JRockit, or from any other vendor for that matter?

like image 313
user632942 Avatar asked Jun 26 '13 20:06

user632942


2 Answers

Run this command in your terminal

java -XshowSettings:properties -version
like image 125
phoenixSid Avatar answered Nov 15 '22 00:11

phoenixSid


You may use command java -version from command prompt, which prints JVM information

like image 21
kosa Avatar answered Nov 15 '22 00:11

kosa