What is the full list of standard keys recognized by the Java System.getProperty() method?

Gustave picture Gustave · Jun 24, 2015 · Viewed 16.5k times · Source

Is there a reference page that lists all the standard property keys that are always accepted by the Java System.getProperty(key) method?

I am not referring to system properties that can be set by the user of the java command (this would be an unlimited list), but to the properties the runtime sets itself (such as java.version, java.specification.version, etc).

Answer

JFK picture JFK · Jun 7, 2016

Maybe also helpful:

  • Show the effective property values your JVM picks up:

    java -XshowSettings:all