編集の要約なし
編集の要約なし
3行目: 3行目:
指定のシステム・プロパティを取得する。
指定のシステム・プロパティを取得する。
  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.");