ページの作成:「System.getProperty [https://docs.oracle.com/javase/jp/8/docs/api/java/lang/System.html#getProperty-java.lang.String-]<br> public static String getProperty(String key)…」
 
編集の要約なし
 
(同じ利用者による、間の4版が非表示)
1行目: 1行目:
[[System]].getProperty [https://docs.oracle.com/javase/jp/8/docs/api/java/lang/System.html#getProperty-java.lang.String-]<br>
[[System]].getProperty [https://docs.oracle.com/javase/jp/8/docs/api/java/lang/System.html#getProperty-java.lang.String-]
public static String getProperty(String key)


指定のシステム・プロパティを取得します。
* 指定のシステム・プロパティを取得する
  System.out.println(System.getProperty("user.dir"));
  System.out.println(System.getProperty("user.dir"));
* システムの改行コードを利用する
final String BR = System.getProperty("line.separator");
System.out.println("This is a pen." + BR + "This is an apple.");

2019年7月2日 (火) 20:36時点における最新版

System.getProperty [1]

  • 指定のシステム・プロパティを取得する
System.out.println(System.getProperty("user.dir"));
  • システムの改行コードを利用する
final String BR = System.getProperty("line.separator");
System.out.println("This is a pen." + BR + "This is an apple.");