「Java」クラスLocalDateで現在日付の年を取得する
環境
JDK1.8
Eclipse 2021
書式
クラスLocalDate
LocalDateは、日付(年-月-日として表示されることが多い)を表す不変の日付/時間オブジェクトです。
他の日付フィールド(「年の日」、曜日、「年の週番号」など)にもアクセスできます。このクラスでは、時間またはタイムゾーンを格納したり表現したりしません。
getYear()
年フィールドを取得します。
使用例
package com.arkgame.study; import java.time.LocalDate; public class Test { protected final String FMT_TITLE_MONTH = "M月分"; public static void main(String[] args) { // システムの現在の日付値を取得する LocalDate currdate = LocalDate.now(); System.out.println("現在の日付: " + currdate); // 現在の年ヲ取得 int current_Year = currdate.getYear(); System.out.println("現在の年: " + current_Year); } }
実行結果
現在の日付: 2022-04-15
現在の年: 2022