web-dev-qa-db-ja.com

Java System.getProperty()メソッドによって認識される標準キーの完全なリストは何ですか?

Java System.getProperty(key)メソッドによって常に受け入れられるすべての標準プロパティキーをリストするリファレンスページはありますか?

Javaコマンドのユーザーが設定できるシステムプロパティ(これは無制限のリストになります)を参照していませんが、ランタイムが自身を設定するプロパティ(Java.versionJava.specification.versionなど)を参照しています、など)。

20
Gustave

多分また役立つ:

  • JVMが取得する有効なプロパティ値を表示します。

    Java -XshowSettings:all
    
23
JFK

例: https://docs.Oracle.com/javase/tutorial/essential/environment/sysprop.html ?私はOracleがリストを持っていると思います

更新(上記のリンクからコピー):

"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

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

いくつかの重複がありますが、前者の説明は後者よりも有益であると思います。後者は28のプロパティをリストしますが、すべてのプロパティを印刷すると、私のjvmは56で応答しますが、28にリストされていないものにはSun.*(12)、*.awt.*(3)、10個のユーザープロパティのうち7個(country.format, country, script, variant, timezone, language, language.format

14
Danielson

次のコードを使用して、すべてのプロパティとその設定をコンソールに表示できます

    //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));    
   }

ここに例があります http://javacodingnerd.blogspot.de/2017/03/Java-how-to-gather-system-properties.html

0
CanGu

このコードを使用して、システムプロパティを取得できます。

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));
}

System.getEnv()から環境情報を取得することもできます。

0
Johnson Abraham

出力をより適切に印刷するには、次のコードを使用できます。このコードは、環境とプログラミング言語 Processing で完全に機能することに注意してください。 (はい、それは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]);
}

それが役に立てば幸い。 ;)

0
abel