|
@@ -1,6 +1,6 @@
|
|
|
package org.jeecg.modules.adweb.common.util;
|
|
|
|
|
|
-import com.xkcoding.http.util.StringUtil;
|
|
|
+import com.google.common.collect.ImmutableMap;
|
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
@@ -21,65 +21,56 @@ import java.util.*;
|
|
|
@Slf4j
|
|
|
public class DateUtil {
|
|
|
|
|
|
- /** 时间格式(yyyy-MM-dd) */
|
|
|
- public static final String DATE_PATTERN = "yyyy-MM-dd";
|
|
|
+ /** 标准日期格式(yyyy-MM-dd) */
|
|
|
+ public static final String DATE_FORMAT = "yyyy-MM-dd";
|
|
|
|
|
|
- /** 时间格式(yyyy-MM-dd HH:mm:ss) */
|
|
|
- public static final String DATE_TIME_PATTERN = "yyyy-MM-dd HH:mm:ss";
|
|
|
+ /** 标准时间格式(yyyy-MM-dd HH:mm:ss) */
|
|
|
+ public static final String DATE_TIME_FORMAT = "yyyy-MM-dd HH:mm:ss";
|
|
|
|
|
|
/** 带时区的时间格式(yyyy-MM-dd HH:mm:ss +00:00) */
|
|
|
- public static final String ZONED_DATE_TIME_PATTERN = "yyyy-MM-dd HH:mm:ss X";
|
|
|
+ public static final String ZONED_DATE_TIME_FORMAT = "yyyy-MM-dd HH:mm:ss X";
|
|
|
|
|
|
- public static final String SUBJECT_DATE = "yyyy/MM/dd";
|
|
|
+ /** 时间格式(yyyy/MM/dd) */
|
|
|
+ public static final String SUBJECT_DATE_FORMAT = "yyyy/MM/dd";
|
|
|
|
|
|
- public static final ZoneId DEFAULT_ZONE_ID = ZoneId.of("Asia/Shanghai");
|
|
|
-
|
|
|
- /** yyyy-MM-dd HH:mm:ss. */
|
|
|
- public static final String DATE_FORMAT_FIVE = "yyyy-MM-dd HH:mm:ss";
|
|
|
-
|
|
|
- /** yyyyMMdd. */
|
|
|
- public static final String DATE_FORMAT_THREE = "yyyyMMdd";
|
|
|
+ /** 时间格式(yyyyMMdd) */
|
|
|
+ public static final String COMPACT_DATE_FORMAT = "yyyyMMdd";
|
|
|
|
|
|
- /** yyyyMMddHHmm */
|
|
|
- public static final String DATE_FORMAT = "yyyyMMddHHmmss";
|
|
|
-
|
|
|
- public static Date plusDays(Date date, int daysToAdd) {
|
|
|
- Calendar calendar = Calendar.getInstance();
|
|
|
- calendar.setTime(date);
|
|
|
+ /** 时间格式(yyyyMMddHHmmss) */
|
|
|
+ public static final String COMPACT_DATE_TIME_FORMAT = "yyyyMMddHHmmss";
|
|
|
|
|
|
- calendar.add(Calendar.DAY_OF_MONTH, daysToAdd);
|
|
|
- return calendar.getTime();
|
|
|
- }
|
|
|
+ public static final ZoneId DEFAULT_ZONE_ID = ZoneId.of("Asia/Shanghai");
|
|
|
|
|
|
/**
|
|
|
- * 特殊时间数据处理
|
|
|
+ * 根据日期类型返回日期区间
|
|
|
*
|
|
|
- * @param dateType 时间
|
|
|
+ * @param dateType 日期类型
|
|
|
*/
|
|
|
- public static Map<String, Date> dealDateType(String dateType) {
|
|
|
+ public static Map<String, Date> getDateRangeByType(String dateType) {
|
|
|
Date now = new Date();
|
|
|
Date start = null;
|
|
|
Date end = null;
|
|
|
- if ("yesterday".equals(dateType)) {
|
|
|
- start = getTodayZeroTime(DateUtil.addDays(now, -1));
|
|
|
- end = getTodayZeroTime(now);
|
|
|
- }
|
|
|
- if ("today".equals(dateType)) {
|
|
|
- start = getTodayZeroTime(now);
|
|
|
- end = getTmrZeroTime(now);
|
|
|
- }
|
|
|
- if ("sevenDay".equals(dateType)) {
|
|
|
- end = getTmrZeroTime(now);
|
|
|
- start = addDays(end, -7);
|
|
|
- }
|
|
|
- if ("thirtyDay".equals(dateType)) {
|
|
|
- end = getTmrZeroTime(now);
|
|
|
- start = addDays(end, -30);
|
|
|
+
|
|
|
+ switch (dateType) {
|
|
|
+ case "yesterday":
|
|
|
+ start = getTodayZeroTime(DateUtil.addDays(now, -1));
|
|
|
+ end = getTodayZeroTime(now);
|
|
|
+ break;
|
|
|
+ case "today":
|
|
|
+ start = getTodayZeroTime(now);
|
|
|
+ end = getTmrZeroTime(now);
|
|
|
+ break;
|
|
|
+ case "sevenDay":
|
|
|
+ end = getTmrZeroTime(now);
|
|
|
+ start = addDays(end, -7);
|
|
|
+ break;
|
|
|
+ case "thirtyDay":
|
|
|
+ end = getTmrZeroTime(now);
|
|
|
+ start = addDays(end, -30);
|
|
|
+ break;
|
|
|
}
|
|
|
- Map<String, Date> map = new HashMap<>();
|
|
|
- map.put("start", start);
|
|
|
- map.put("end", end);
|
|
|
- return map;
|
|
|
+
|
|
|
+ return ImmutableMap.of("start", start, "end", end);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -119,74 +110,17 @@ public class DateUtil {
|
|
|
* 在当前日期上追加N天
|
|
|
*
|
|
|
* @param date 当前日期
|
|
|
- * @param num 添加天数
|
|
|
+ * @param daysToAdd 添加天数
|
|
|
* @return 日期字符串形式
|
|
|
*/
|
|
|
- public static Date addDays(Date date, int num) {
|
|
|
+ public static Date addDays(Date date, int daysToAdd) {
|
|
|
Calendar c = Calendar.getInstance();
|
|
|
c.setTime(date);
|
|
|
- c.add(Calendar.DAY_OF_MONTH, num);
|
|
|
+ c.add(Calendar.DAY_OF_MONTH, daysToAdd);
|
|
|
return c.getTime();
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * 按指定格式转化字符串为Date
|
|
|
- *
|
|
|
- * @param strDate String
|
|
|
- * @param strFormat String
|
|
|
- * @return FormatDate
|
|
|
- * @throws ParseException ParseException
|
|
|
- */
|
|
|
- public static Date getFormatDate(String strDate, String strFormat) throws ParseException {
|
|
|
- if (StringUtil.isEmpty(strDate) || StringUtil.isEmpty(strFormat)) {
|
|
|
- return null;
|
|
|
- }
|
|
|
-
|
|
|
- SimpleDateFormat df = new SimpleDateFormat(strFormat);
|
|
|
- df.setLenient(false);
|
|
|
- return df.parse(strDate);
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 按指定格式转化Date为字符串
|
|
|
- *
|
|
|
- * @param date Date
|
|
|
- * @param toFormat String
|
|
|
- * @return FormatDate String
|
|
|
- */
|
|
|
- public static String dateToString(Date date, String toFormat) {
|
|
|
-
|
|
|
- if (date == null) {
|
|
|
- return "";
|
|
|
- }
|
|
|
-
|
|
|
- SimpleDateFormat df = new SimpleDateFormat(toFormat);
|
|
|
- df.setLenient(false);
|
|
|
- return df.format(date);
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 转换为指定格式Date
|
|
|
- *
|
|
|
- * @param date String
|
|
|
- * @param strFormat String
|
|
|
- * @return FormatDate
|
|
|
- * @throws ParseException ParseException
|
|
|
- */
|
|
|
- public static Date formatDate(Date date, String strFormat) {
|
|
|
- if (date == null) {
|
|
|
- return null;
|
|
|
- }
|
|
|
- Date reDate = null;
|
|
|
- try {
|
|
|
- reDate = getFormatDate(dateToString(date, strFormat), strFormat);
|
|
|
- } catch (ParseException e) {
|
|
|
- date = null;
|
|
|
- }
|
|
|
- return reDate;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
* 计算两个Date的日期差
|
|
|
*
|
|
|
* @param start
|
|
@@ -207,7 +141,7 @@ public class DateUtil {
|
|
|
* @param format
|
|
|
* @return
|
|
|
*/
|
|
|
- public static String formatDateStr(Date date, String format) {
|
|
|
+ public static String formatDate(Date date, String format) {
|
|
|
SimpleDateFormat dateFormat = new SimpleDateFormat(format);
|
|
|
dateFormat.setLenient(false);
|
|
|
return dateFormat.format(date);
|