web-dev-qa-db-fra.com

Quelle est la liste complète des clés standard reconnues par la méthode Java System.getProperty ()?

Existe-t-il une page de référence répertoriant toutes les clés de propriété standard toujours acceptées par la méthode Java System.getProperty(key)?

Je ne fais pas référence aux propriétés système pouvant être définies par l'utilisateur de la commande Java (liste illimitée), mais aux propriétés définies par le moteur d'exécution (telles que Java.version, Java.specification.version, etc.).

15
Gustave

Comme: https://docs.Oracle.com/javase/tutorial/essential/environment/sysprop.html ? Je dirais que Oracle aura une liste 

Mise à jour (copié du lien ci-dessus): 

"file.separator"    Character that separates components of a file path. This is "/" on UNIX and "\" on Windows.
"Java.class.path"   Path used to find directories and JAR archives containing class files. Elements of the class path are separated by a platform-specific character specified in the path.separator property.
"Java.home"         Installation directory for Java Runtime Environment (JRE)
"Java.vendor"       JRE vendor name
"Java.vendor.url"   JRE vendor URL
"Java.version"      JRE version number
"line.separator"    Sequence used by operating system to separate lines in text files
"os.Arch"           Operating system architecture
"os.name"           Operating system name
"os.version"        Operating system version
"path.separator"    Path separator character used in Java.class.path
"user.dir"          User working directory
"user.home"         User home directory
"user.name"         User account name

Une liste plus complète de https://docs.Oracle.com/javase/8/docs/api/Java/lang/System.html

Java.version                    Java Runtime Environment version
Java.vendor                     Java Runtime Environment vendor
Java.vendor.url                 Java vendor URL
Java.home                       Java installation directory
Java.vm.specification.version   Java Virtual Machine specification version
Java.vm.specification.vendor    Java Virtual Machine specification vendor
Java.vm.specification.name      Java Virtual Machine specification name
Java.vm.version                 Java Virtual Machine implementation version
Java.vm.vendor                  Java Virtual Machine implementation vendor
Java.vm.name                    Java Virtual Machine implementation name
Java.specification.version      Java Runtime Environment specification version
Java.specification.vendor       Java Runtime Environment specification vendor
Java.specification.name         Java Runtime Environment specification name
Java.class.version              Java class format version number
Java.class.path                 Java class path
Java.library.path               List of paths to search when loading libraries
Java.io.tmpdir                  Default temp file path
Java.compiler                   Name of JIT compiler to use
Java.ext.dirs                   Path of extension directory or directories Deprecated. This property, and the mechanism which implements it, may be removed in a future release.
os.name                         Operating system name
os.Arch                         Operating system architecture
os.version                      Operating system version
file.separator                  File separator ("/" on UNIX)
path.separator                  Path separator (":" on UNIX)
line.separator                  Line separator ("\n" on UNIX)
user.name                       User's account name
user.home                       User's home directory
user.dir                        User's current working directory

Bien que certains doublons, je pense que les premières descriptions sont plus informatives que les dernières. Cette dernière liste 28 propriétés, alors que si j’imprime toutes les propriétés, jvm répond par 56, certaines ne sont pas répertoriées dans les 28 include Sun.* (12), *.awt.* (3), 7 propriétés d’utilisateur (country.format, country, script, variant, timezone, language, language.format)

14
Danielson

Peut-être aussi utile:

  • Affichez les valeurs de propriété effectives que votre machine virtuelle Java prend

    Java -XshowSettings:all
    
13
JFK

Vous pouvez afficher toutes les propriétés et leurs paramètres sur votre console en utilisant le code suivant

    //Properties inherits form Hashtable and holds the
    //Information of what the Propertie is called (key)
    //and what the Propertie really is (value)
    Properties props = System.getProperties();

    //We want to loop through the entrys using the Keyset
    Set<object> propKeySet = props.keySet();

   for (Object singleKey : propKeySet) {
   System.out.println(singleKey += props.getProperty((String) singleKey));    
   }

Vous pouvez trouver un exemple ici http://javacodingnerd.blogspot.de/2017/03/Java-how-to-gather-system-properties.html

0
CanGu

Vous pouvez utiliser ce code pour obtenir les propriétés du système:

import Java.util.Properties;
import Java.util.Enumeration;

Properties props = System.getProperties();
Enumeration propNames = props.propertyNames();
for (; propNames.hasMoreElements();) {
    String key = propNames.nextElement().toString();
    System.out.println(key + " : " + props.getProperty(key));
}

Vous pouvez également obtenir les informations sur l’environnement auprès de System.getEnv ().

0
Johnson Abraham

Pour une meilleure façon d’imprimer le résultat, vous pouvez utiliser le code suivant. Notez que ce code est complètement fonctionnel dans l'environnement et le langage de programmation Traitement . (Oui, c'est basé sur Java)

String Junk = System.getProperties().toString();
Junk = Junk.replace("}", "").replace("{", "");
String Separated [] = split(Junk, ", ");
for(int S = 0; S < Separated.length; S ++) {
  String splitFurther [] = split(Separated [S], "=");
println("Key: " + splitFurther [0] + "\n\tProperty: " + splitFurther [1]);
}

J'espère que ça aide. ;)

0
abel