LoginSignup
1
1

More than 1 year has passed since last update.

KotlinでLocalDateを初期化・LocalDate↔Date変換

Last updated at Posted at 2022-01-05

LocalDate ↔ Dateの変換が必要になる機会があったので備忘録として残しておく。

LocalDateを日付指定で初期化

LocalDate.of(2022, 1, 5)

LocalDateをDateに変換

fun LocalDate.toDate(): Date {
    return Date.from(this.atStartOfDay(ZoneId.systemDefault()).toInstant())
}

DateをLocalDateに変換

fun Date.toLocalDate(): LocalDate {
    return this.toInstant().atZone(ZoneId.systemDefault()).toLocalDate()
}
1
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1