DateUtil.java
3.9 KB
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
package com.skua.modules.guest.util;
import java.text.SimpleDateFormat;
import java.time.LocalDateTime;
import java.time.ZoneId;
import java.util.*;
/**
* @author sonin
* @date 2021/8/18 11:34
*/
public class DateUtil {
private static DateUtil dateUtil;
public static DateUtil getInstance() {
if (dateUtil == null) {
synchronized (DateUtil.class) {
if (dateUtil == null) {
dateUtil = new DateUtil();
}
}
}
return dateUtil;
}
/**
* 获取今天日期
*
* @return
*/
public String getToday() {
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
Calendar calendar = Calendar.getInstance();
return simpleDateFormat.format(calendar.getTime());
}
/**
* 获取本周每天的日期
*
* @return
*/
public List<String> getWeek() {
List<String> weekList = new ArrayList<>();
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
Calendar calendar = Calendar.getInstance();
// 今天是一周中的第几天
int dayOfWeek = calendar.get(Calendar.DAY_OF_WEEK);
if (calendar.getFirstDayOfWeek() == Calendar.SUNDAY) {
calendar.add(Calendar.DAY_OF_MONTH, 1);
}
// 计算一周开始的日期
calendar.add(Calendar.DAY_OF_MONTH, -dayOfWeek);
for (int i = 1; i <= 7; i++) {
calendar.add(Calendar.DAY_OF_MONTH, 1);
weekList.add(simpleDateFormat.format(calendar.getTime()));
}
return weekList;
}
public List<String> getMonth() {
List<String> monthList = new ArrayList<>();
Calendar calendar = Calendar.getInstance(Locale.CHINA);
int year = calendar.get(Calendar.YEAR); //年份
int month = calendar.get(Calendar.MONTH) + 1; //月份
int day = calendar.getActualMaximum(Calendar.DATE);
for (int i = 1; i <= day; i++) {
StringBuilder stringBuilder = new StringBuilder().append(year).append("-");
if (month < 10) {
stringBuilder.append(0).append(month).append("-");
} else {
stringBuilder.append(month).append("-");
}
if (i < 10) {
stringBuilder.append(0).append(i);
} else {
stringBuilder.append(i);
}
monthList.add(stringBuilder.toString());
}
return monthList;
}
public Integer getYear() {
Calendar calendar = Calendar.getInstance();
// e.g: 2021
return calendar.get(Calendar.YEAR);
}
/**
* 根据年月获取对应的月份天数
**/
private int getDaysByYearMonth(int year, int month) {
Calendar calendar = Calendar.getInstance();
calendar.set(Calendar.YEAR, year);
calendar.set(Calendar.MONTH, month - 1);
calendar.set(Calendar.DATE, 1);
calendar.roll(Calendar.DATE, -1);
return calendar.get(Calendar.DATE);
}
/**
* String => java.util.Date
*
* @param str 表示日期的字符串
* @param dateFormat 传入字符串的日期表示格式(如:"yyyy-MM-dd HH:mm:ss")
* @return java.util.Date类型日期对象(如果转换失败则返回null)
*/
public static Date strToDate(String str, String dateFormat) {
SimpleDateFormat simpleDateFormat = new SimpleDateFormat(dateFormat);
Date date = null;
try {
date = simpleDateFormat.parse(str);
} catch (Exception e) {
e.printStackTrace();
}
return date;
}
/**
* Date -> LocalDateTime
* @param date
* @return
*/
public static LocalDateTime dateToLocalDateTime(Date date){
return date.toInstant().atZone(ZoneId.systemDefault()).toLocalDateTime();
}
}