Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
「My Exams」と仮定して通知を作成しました。
設定日の3日前にリマインダー通知を表示したい
データベースに日付を保存しているのですが、現在の日付と比較して通知を表示したい
どんな助けでも大歓迎です
ありがとうございました...
特定の日付の 3 日前の日付を生成するには、次のようにします。
Calendar c = Calendar.getInstance(); c.set(year, month, day); // Set the calendar NOTE: this will not change the hour, minute, second c.add(Calendar.DAY_OF_YEAR, -3); // Roll the calendar back 3 days