Joda-Time 日付間の日数を計算する
Joda-Time を使用する場合、多くの場合、2 つの日付間の日数の差を決定する必要があります。 。 Days.daysBetween メソッドは解決策を提供しますが、夏時間 (DST) 調整を常に正しく処理できるわけではありません。正確な日を計算するには、次の方法を使用します。Days.daysBetween(start.toLocalDate(), end.toLocalDate()).getDays()
DST あいまいさの例
DST あいまいさがある次の例を考えてみましょう:// 5am on October 20th to 1pm on October 21st, 2013, Brazil DateTimeZone BRAZIL = DateTimeZone.forID("America/Sao_Paulo"); DateTime start = new DateTime(2013, 10, 20, 5, 0, 0, BRAZIL); DateTime end = new DateTime(2013, 10, 21, 13, 0, 0, BRAZIL); // Using withTimeAtStartOfDay() System.out.println(Days.daysBetween(start.withTimeAtStartOfDay(), end.withTimeAtStartOfDay()).getDays()); // Using toLocalDate() System.out.println(Days.daysBetween(start.toLocalDate(), end.toLocalDate()).getDays());
以上が2 つの Joda-Time 日付の間の日数を正確に計算するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。