JAVA----日期周的常用方法,如:获取当前周周一日期

这篇博客介绍了如何使用Java获取当前周的周一和上周的周日日期。通过`getMondayPlus()`方法计算出与本周一的天数差,然后利用`GregorianCalendar`调整日期,最后用`SimpleDateFormat`格式化输出。测试结果显示,当前周的周一为2022-01-03,上周的周日为2022-01-09。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

获取当前周周一的日期

    public static String getCurrentMonday() {
        SimpleDateFormat dateFormat = new SimpleDateFormat(YYYY_MM_DD);
        int mondayPlus = getMondayPlus();
        GregorianCalendar currentDate = new GregorianCalendar();
        currentDate.add(GregorianCalendar.DATE, mondayPlus);
        Date monday = currentDate.getTime();

        return dateFormat.format(monday);
    }

    /**
     * 获取当前日期与本周一相差的天数
     */
    private static int getMondayPlus() {
        Calendar cd = Calendar.getInstance();
        // 默认:星期日是第一天
        int dayOfWeek = cd.get(Calendar.DAY_OF_WEEK);

        if (dayOfWeek == 1) {
            return -6;
        } else {
            return 2 - dayOfWeek;
        }
    }

测试

System.out.println(getCurrentMonday());

2022-01-03

获得当前周周日的日期

    public static String getPreviousSunday() {
        SimpleDateFormat dateFormat = new SimpleDateFormat(YYYY_MM_DD);
        int mondayPlus = getMondayPlus();
        GregorianCalendar currentDate = new GregorianCalendar();
        currentDate.add(GregorianCalendar.DATE, mondayPlus + 6);
        Date sunday = currentDate.getTime();
        return dateFormat.format(sunday);
    }

测试

System.out.println(getPreviousSunday());

2022-01-09

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值