0
0

More than 1 year has passed since last update.

Java で System.getProperty("xxxx") で取得される値の一覧を調べる

Posted at

やりたいこと

java.lang.System#getProperties から取得できる値の一覧を調べます。

手法

  • 以下のようにして調査すれば一覧が確認できます。
public class HogeMain {
  public static void main (String... args){
    System.getProperties().list(System.out);
  }
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0