編集の要約なし |
編集の要約なし |
||
(同じ利用者による、間の3版が非表示) | |||
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"); | |||
System.out.println("This is a pen." + BR + "This is an apple."); |