編集の要約なし
編集の要約なし
1行目: 1行目:
[[System]]<br>
[[System]]<br>
public static Map<String,String> getenv()
public static Map<String,String> getenv()



2019年5月27日 (月) 08:51時点における版

System
public static Map<String,String> getenv()

現在のシステム環境を取得。

// 指定の環境変数を取得
System.out.println(System.getenv("PATH"));

// 全ての環境変数を取得
System.out.println(
    System.getenv().toString().replaceAll(", ", "\n")
);