首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

如何在Java中获取特定年份的所有星期日?

要在Java中获取特定年份的所有星期日,您可以使用java.time包中的LocalDateYearMonth类。以下是一个示例代码:

代码语言:java
复制
import java.time.DayOfWeek;
import java.time.LocalDate;
import java.time.YearMonth;
import java.util.ArrayList;
import java.util.List;

public class SundaysInYear {
    public static void main(String[] args) {
        int year = 2022; // 指定要查询的年份
        List<LocalDate> sundays = getSundaysInYear(year);
        for (LocalDate date : sundays) {
            System.out.println(date);
        }
    }

    public static List<LocalDate> getSundaysInYear(int year) {
        List<LocalDate> sundays = new ArrayList<>();
        YearMonth yearMonth = YearMonth.of(year, 1);
        LocalDate date = yearMonth.atDay(1);
        while (date.getYear() == year) {
            if (date.getDayOfWeek() == DayOfWeek.SUNDAY) {
                sundays.add(date);
            }
            date = date.plusDays(1);
        }
        return sundays;
    }
}

这个代码首先导入了所需的类,然后定义了一个getSundaysInYear方法,该方法接受一个年份作为参数,并返回一个包含该年份所有星期日的LocalDate列表。在main方法中,您可以指定要查询的年份,并调用getSundaysInYear方法来获取星期日列表。最后,将结果打印到控制台。

页面内容是否对你有帮助?
有帮助
没帮助

相关·内容

1分19秒

020-MyBatis教程-动态代理使用例子

14分15秒

021-MyBatis教程-parameterType使用

3分49秒

022-MyBatis教程-传参-一个简单类型

7分8秒

023-MyBatis教程-MyBatis是封装的jdbc操作

8分36秒

024-MyBatis教程-命名参数

15分31秒

025-MyBatis教程-使用对象传参

6分21秒

026-MyBatis教程-按位置传参

6分44秒

027-MyBatis教程-Map传参

15分6秒

028-MyBatis教程-两个占位符比较

6分12秒

029-MyBatis教程-使用占位替换列名

8分18秒

030-MyBatis教程-复习

6分32秒

031-MyBatis教程-复习传参数

领券