java – How to find out the JVM manufacturer?

Question:

How to find out the JVM manufacturer? As I understand it, there are several JVM vendors: Oracle (Oracle Hotspot), Free Software Community (OpenJDK), IBM (IBM J9), Azul Systems (Zing) and others. How (from the jdk package) can you find out which version of the JVM is being used?

Answer:

System.getProperty("java.vendor");
System.getProperty("java.vm.name");
Scroll to Top