編集の要約なし
編集の要約なし
 
1行目: 1行目:
[[System]].getProperty [https://docs.oracle.com/javase/jp/8/docs/api/java/lang/System.html#getProperty-java.lang.String-]
[[System]].getProperty [https://docs.oracle.com/javase/jp/8/docs/api/java/lang/System.html#getProperty-java.lang.String-]


指定のシステム・プロパティを取得する。
* 指定のシステム・プロパティを取得する
  System.out.println(System.getProperty("user.dir"));
  System.out.println(System.getProperty("user.dir"));


システムの改行コードを利用する。
* システムの改行コードを利用する
  final String BR = System.getProperty("line.separator");
  final String BR = System.getProperty("line.separator");
  System.out.println("This is a pen." + BR + "This is an apple.");
  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.");