Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

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;
}
share|improve this question

4 Answers

up vote 11 down vote accepted

I'm assuming you want to return a Date object, so:

public static Date firstDayOfNextMonth() {
    MutableDateTime mdt = new MutableDateTime();
    mdt.addMonths(1);
    mdt.setDayOfMonth(1);
    mdt.setMillisOfDay(0); // if you want to make sure you're at midnight
    return mdt.toDate();
}
share|improve this answer
   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());

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.

share|improve this answer
Yeah, LocalDate objects are a slight bit harder to convert back to Java Date objects... and since LocalDate represents a whole day in Joda Time, I don't remember what the time component would be on conversion to a Date. – delfuego Jan 24 '11 at 19:46
2  
For those going the LocalDate route, it looks like using LocalDate.toDateMidnight().toDate() is the easiest way to convert it to a Java Date object with the time set to midnight. – delfuego Jan 24 '11 at 19:53

the same as before but converted also to java.util.Date

Date firstDayOfNextMonth = (new LocalDate().plusMonths(1).withDayOfMonth(1)).toDate();

share|improve this answer

localDate = new LocalDate().plusMonths(1).withDayOfMonth(1);

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.