下个月的第一天使用 java Joda-Time

2022-01-11 00:00:00 calendar java jodatime

你会如何用 org.joda.time 包重写下面的方法,它返回下个月的第一天/joda-time/" rel="noreferrer">Joda-Time?

How would you rewrite the method below, which returns the first day of next month, with the org.joda.time package in Joda-Time?

public static Date firstDayOfNextMonth() {
    Calendar nowCal = Calendar.getInstance();
    int month = nowCal.get(Calendar.MONTH) + 1;
    int year = nowCal.get(Calendar.YEAR);

    Calendar cal = Calendar.getInstance();
    cal.clear();
    cal.set(Calendar.YEAR, year);
    cal.set(Calendar.MONTH, month);
    cal.set(Calendar.DAY_OF_MONTH, 1);
    Date dueDate = new Date(cal.getTimeInMillis());

    return dueDate;
}

推荐答案

   LocalDate today = new LocalDate();
   LocalDate d1 = today.plusMonths(1).withDayOfMonth(1);

更容易和更清洁,不是吗?:-)

A little easier and cleaner, isn't it? :-)

更新:如果你想返回一个日期:

Update: If you want to return a date:

return new Date(d1.toDateTimeAtStartOfDay().getMillis());

但我强烈建议您避免将纯 DATE 类型(即日历中的一天,没有时间信息)与 DATETIME 类型混合,特别是与可怕的 java.util.Date 一样的物理"日期时间类型 .这有点像从整数和浮点类型转换,你必须小心.

but I strongly advise you to avoid mixing pure DATE types (i.e. a day in the calendar, without time information) with DATETIME types, specially with a "physical" datetime type as is the hideous java.util.Date . It's somewhat like converting from-to integer and floating types, you must be careful.

相关文章