java – Joda-Time:获得月的第一个/第二个/最后一个星期日

前端之家收集整理的这篇文章主要介绍了java – Joda-Time:获得月的第一个/第二个/最后一个星期日前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在普通的 Java中,我有这个代码获取本月的最后一个星期日.
Calendar getNthOfMonth(int n,int day_of_week,int month,int year) {
    Calendar compareDate = Date(1,month,year);
    compareDate.set(DAY_OF_WEEK,day_of_week);
    compareDate.set(DAY_OF_WEEK_IN_MONTH,n);
    return compareDate;
}
// Usage
Calendar lastSundayOfNovember = getNthOfMonth(-1,SUNDAY,NOVEMBER,2012)

使用Joda-Time实现相同结果的干净而优雅的方法是什么?

解决方法

public class Time {
public static void main(String[] args) {
    System.out.println(getNthOfMonth(DateTimeConstants.SUNDAY,DateTimeConstants.SEP,2012));
}


public static LocalDate getNthOfMonth(int day_of_week,int year) {
    LocalDate date = new LocalDate(year,1).dayOfMonth()  
             .withMaximumValue()
             .dayOfWeek()
             .setCopy(day_of_week);
    if(date.getMonthOfYear() != month) {
        return date.dayOfWeek().addToCopy(-7);
    }
    return date;
}
}
原文链接:https://www.f2er.com/java/127541.html

猜你在找的Java相关文章