タイムゾーンを考慮した日付・時刻の取得方法です。
12345678910
import org.threeten.bp.ZoneId;import org.threeten.bp.ZonedDateTime;// 現在時刻ZonedDateTime now = ZonedDateTime.now();// 任意の日付ZonedDateTime target = ZonedDateTime.of(2021, 04, 01, 0, 0, 0, 0, ZoneId.systemDefault());if (now.compareTo(target_date) < 0) { // targetが未来日付の場合はここに入る!}
reon777
システムエンジニア
福岡県 北九州市
投稿
176
カテゴリ
0
タグ
43
Update your browser to view this website correctly. Update my browser now
×