记录LocalDateTime获取周始末日期,月始末日期(含js实现)

import java.time.LocalDateTime;
import java.time.temporal.TemporalAdjusters;
import java.time.DayOfWeek;

public class DateRangeExamples {
    public static void main(String[] args) {
        // 获取当前日期和时间
        LocalDateTime now = LocalDateTime.now();

        // 获取当前周一的日期
        LocalDateTime currentMonday = now.with(TemporalAdjusters.previousOrSame(DayOfWeek.MONDAY));
        // 获取当前周五的日期
        LocalDateTime currentFriday = now.with(TemporalAdjusters.nextOrSame(DayOfWeek.SUNDAY));

        // 打印当前周一到周日的日期
        System.out.println("当前周一的日期: " + currentMonday.toLocalDate());
        System.out.println("当前周日的日期: " + currentFriday.toLocalDate());

        // 获取当月1号的日期
        LocalDateTime firstDayOfMonth = now.with(TemporalAdjusters.firstDayOfMonth());
        // 获取当月最后一天的日期
        LocalDateTime lastDayOfMonth = now.with(TemporalAdjusters.lastDayOfMonth());

        // 打印当月1号到月末的日期
        System.out.println("当月1号的日期: " + firstDayOfMonth.toLocalDate());
        System.out.println("当月末的日期: " + lastDayOfMonth.toLocalDate());

      	// 获取今年的起始日期
        LocalDateTime firstDayOfYear = now.with(TemporalAdjusters.firstDayOfYear());
        // 获取今年的最后一天
        LocalDateTime lastDayOfYear = now.with(TemporalAdjusters.lastDayOfYear());

        // 打印今年的起始日期和最后一天
        System.out.println("今年的起始日期: " + firstDayOfYear.toLocalDate());
        System.out.println("今年的最后一天: " + lastDayOfYear.toLocalDate());
    }
}

![在这里插入图片描述](https://i-blog.csdnimg.cn/direct/5e420ff12bcd492bb4b8a663dcbe6272.png

使用javascript 实现类似效果

方法封装

function getDateRange(type) {
  const now = new Date();

  function getMonday(d) {
    d = new Date(d);
    d.setDate(d.getDate() - (d.getDay() + 6) % 7);
    return d;
  }

  function getSunday(d) {
    d = new Date(d);
    d.setDate(d.getDate() + (7 - d.getDay()) % 7);
    return d;
  }

  function formatISODate(date) {
    const year = date.getFullYear();
    const month = (date.getMonth() + 1).toString().padStart(2, '0');
    const day = date.getDate().toString().padStart(2, '0');
    return `${year}-${month}-${day}`;
  }

  let startDate, endDate;

  switch (type) {
    case 'week':
      startDate = getMonday(now);
      endDate = getSunday(now);
      break;
    case 'month':
      // Start date is the first day of the current month
      startDate = new Date(now.getFullYear(), now.getMonth(), 1);
      // End date is the first day of the next month minus one day
      endDate = new Date(now.getFullYear(), now.getMonth() + 1, 0);
      break;
    default:
      throw new Error('Invalid type provided. Use "week" or "month".');
  }

  return [formatISODate(startDate), formatISODate(endDate)];
}

// 使用示例:
console.log(getDateRange('week')); // 输出当前周一和周日的日期范围
console.log(getDateRange('month')); // 输出当前月第一天和最后一天的日期范围

标准输出:
[ ‘2024-07-15’, ‘2024-07-21’ ]
[ ‘2024-07-01’, ‘2024-07-31’ ]

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值