xm
2024-06-14 722af26bc6fec32bb289b1df51a9016a4935610f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
package com.dl.common.utils;
 
import org.apache.ibatis.annotations.Param;
 
import java.util.Calendar;
import java.util.Date;
 
public class CalendarUtil {
 
    //获取年的开始日期时间
    public static Date getYearStartDate(Date date){
        Calendar calendar = Calendar.getInstance();
        //有参数则是参数年的日期时间,无参则默认当前年的日期时间
        if (null == date){calendar.setTime(new Date());}else {calendar.setTime(date);}
        int year = calendar.get(Calendar.YEAR);
        calendar.set(year, 0, 1, 0, 0, 0);
        return calendar.getTime();
    }
 
    //获取年的结束日期时间
    public static Date getYearEndDate(Date date){
        Calendar calendar = Calendar.getInstance();
        //有参数则是参数年的日期时间,无参则默认当前年的日期时间
        if (null == date){calendar.setTime(new Date());}else {calendar.setTime(date);}
        int year = calendar.get(Calendar.YEAR);
        calendar.set(year, 11, 31, 23, 59, 59);
        return calendar.getTime();
    }
 
    //获取季度开始的日期时间
    public static Date getSeasonStartDate (Date date) {
        Calendar calendar = Calendar.getInstance();
        //有参数则是参数的季度日期时间,无参则默认当前季度的日期时间
        if (null == date){calendar.setTime(new Date());}else {calendar.setTime(date);}
        int month = calendar.get(Calendar.MONTH);
        calendar.set(Calendar.MONTH, month / 3 * 3);
        calendar.set(Calendar.DATE, 1);
 
        int year = calendar.get(Calendar.YEAR);
        int month1 = calendar.get(Calendar.MONTH);
        int day = calendar.get(Calendar.DATE);
 
        calendar.set(year,month1,day,0,0,0);
        return calendar.getTime();
    }
 
    //获取季度的结束日期时间
    public static Date getSeasonEndDate (Date date) {
        Calendar calendar = Calendar.getInstance();
        //有参数则是参数的季度日期时间,无参则默认当前季度的日期时间
        if (null == date){calendar.setTime(new Date());}else {calendar.setTime(date);}
        int month = calendar.get(Calendar.MONTH);
        calendar.set(Calendar.MONTH, (month + 3) / 3 * 3);
        calendar.set(Calendar.DATE, 1);
 
        int year = calendar.get(Calendar.YEAR);
        int month1 = calendar.get(Calendar.MONTH);
        int dates = calendar.get(Calendar.DATE);
        calendar.set(year,month1,dates,23,59,59);
 
        Date date1 = new Date(calendar.getTime().getTime() - 24 * 60 * 60 * 1000);
        return date1;
    }
 
    //获取本月的开始时间
    public static Date getMonthStartDate(Date date){
        Calendar calendar = Calendar.getInstance();
        if (null == date){calendar.setTime(new Date());}else {calendar.setTime(date);}
        int year = calendar.get(Calendar.YEAR);
        int month = calendar.get(Calendar.MONTH);
        calendar.set(year, month, 1, 0, 0, 0);
        return calendar.getTime();
    }
 
    //获取本月的结束时间
    public static Date getMonthEndDate(Date date){
        Calendar calendar = Calendar.getInstance();
        if (null == date){calendar.setTime(new Date());}else {calendar.setTime(date);}
        int year = calendar.get(Calendar.YEAR);
        int month = calendar.get(Calendar.MONTH);
        calendar.set(year, month + 1, 1-1, 23, 59, 59);
        return calendar.getTime();
    }
 
    //获取周的开始时间
    public static Date getWeekStartDate(Date date){
        Calendar calendar = Calendar.getInstance();
        if (null == date){calendar.setTime(new Date());}else {calendar.setTime(date);}
        int d = 0;
        if (Calendar.DAY_OF_WEEK == 1) {
            d = -6;
        } else {
            d = 2 - calendar.get(Calendar.DAY_OF_WEEK);
        }
        // 获取本周的第一天
        calendar.add(Calendar.DAY_OF_WEEK, d);
        calendar.set(Calendar.HOUR_OF_DAY, 0);
        calendar.set(Calendar.MINUTE, 0);
        calendar.set(Calendar.SECOND, 0);
 
        return calendar.getTime();
    }
 
    //获取周的结束时间
    public static Date getWeekEndDate(Date date){
        Calendar calendar = Calendar.getInstance();
        if (null == date){calendar.setTime(new Date());}else {calendar.setTime(date);}
        calendar.add(Calendar.DAY_OF_WEEK, 6);
        calendar.set(Calendar.HOUR_OF_DAY, 23);
        calendar.set(Calendar.MINUTE, 59);
        calendar.set(Calendar.SECOND, 59);
        return calendar.getTime();
    }
 
}