|
|
|
@ -20,8 +20,10 @@ import cn.escheduler.common.Constants;
|
|
|
|
|
import org.slf4j.Logger; |
|
|
|
|
import org.slf4j.LoggerFactory; |
|
|
|
|
|
|
|
|
|
import java.text.ParseException; |
|
|
|
|
import java.text.SimpleDateFormat; |
|
|
|
|
import java.time.Instant; |
|
|
|
|
import java.time.LocalDateTime; |
|
|
|
|
import java.time.ZoneId; |
|
|
|
|
import java.time.format.DateTimeFormatter; |
|
|
|
|
import java.util.Calendar; |
|
|
|
|
import java.util.Date; |
|
|
|
|
|
|
|
|
@ -32,6 +34,27 @@ public class DateUtils {
|
|
|
|
|
|
|
|
|
|
private static final Logger logger = LoggerFactory.getLogger(DateUtils.class); |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* <code>java.util.Date</code> to <code>java.time.LocalDateTime</code> |
|
|
|
|
* use default zone |
|
|
|
|
* @param date |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
private static LocalDateTime date2LocalDateTime(Date date) { |
|
|
|
|
return LocalDateTime.ofInstant(date.toInstant(), ZoneId.systemDefault()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* <code>java.time.LocalDateTime</code> to <code>java.util.Date</code> |
|
|
|
|
* use default zone |
|
|
|
|
* @param localDateTime |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
private static Date localDateTime2Date(LocalDateTime localDateTime) { |
|
|
|
|
Instant instant = localDateTime.atZone(ZoneId.systemDefault()).toInstant(); |
|
|
|
|
return Date.from(instant); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* @return get the formatted date string for the current time |
|
|
|
|
*/ |
|
|
|
@ -44,7 +67,8 @@ public class DateUtils {
|
|
|
|
|
* @return get the date string in the specified format of the current time |
|
|
|
|
*/ |
|
|
|
|
public static String getCurrentTime(String format) { |
|
|
|
|
return new SimpleDateFormat(format).format(new Date()); |
|
|
|
|
// return new SimpleDateFormat(format).format(new Date());
|
|
|
|
|
return LocalDateTime.now().format(DateTimeFormatter.ofPattern(format)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -53,7 +77,17 @@ public class DateUtils {
|
|
|
|
|
* @return get the formatted date string |
|
|
|
|
*/ |
|
|
|
|
public static String format(Date date, String format) { |
|
|
|
|
return new SimpleDateFormat(format).format(date); |
|
|
|
|
// return new SimpleDateFormat(format).format(date);
|
|
|
|
|
return format(date2LocalDateTime(date), format); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* @param localDateTime |
|
|
|
|
* @param format e.g. yyyy-MM-dd HH:mm:ss |
|
|
|
|
* @return get the formatted date string |
|
|
|
|
*/ |
|
|
|
|
public static String format(LocalDateTime localDateTime, String format) { |
|
|
|
|
return localDateTime.format(DateTimeFormatter.ofPattern(format)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -71,7 +105,9 @@ public class DateUtils {
|
|
|
|
|
*/ |
|
|
|
|
public static Date parse(String date, String format) { |
|
|
|
|
try { |
|
|
|
|
return new SimpleDateFormat(format).parse(date); |
|
|
|
|
// return new SimpleDateFormat(format).parse(date);
|
|
|
|
|
LocalDateTime ldt = LocalDateTime.parse(date, DateTimeFormatter.ofPattern(format)); |
|
|
|
|
return localDateTime2Date(ldt); |
|
|
|
|
} catch (Exception e) { |
|
|
|
|
logger.error("error while parse date:" + date, e); |
|
|
|
|
} |
|
|
|
@ -80,6 +116,7 @@ public class DateUtils {
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* convert date str to yyyy-MM-dd HH:mm:ss format |
|
|
|
|
* |
|
|
|
|
* @param str |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
@ -135,6 +172,7 @@ public class DateUtils {
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* get the date of the specified date in the days before and after |
|
|
|
|
* |
|
|
|
|
* @param date |
|
|
|
|
* @param day |
|
|
|
|
* @return |
|
|
|
@ -159,6 +197,7 @@ public class DateUtils {
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* convert schedule string to date |
|
|
|
|
* |
|
|
|
|
* @param schedule |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
@ -185,7 +224,7 @@ public class DateUtils {
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* get monday |
|
|
|
|
* |
|
|
|
|
* <p> |
|
|
|
|
* note: Set the first day of the week to Monday, the default is Sunday |
|
|
|
|
*/ |
|
|
|
|
public static Date getMonday(Date date) { |
|
|
|
@ -201,7 +240,7 @@ public class DateUtils {
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* get sunday |
|
|
|
|
* |
|
|
|
|
* <p> |
|
|
|
|
* note: Set the first day of the week to Monday, the default is Sunday |
|
|
|
|
*/ |
|
|
|
|
public static Date getSunday(Date date) { |
|
|
|
@ -257,6 +296,7 @@ public class DateUtils {
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* return YYYY-MM-DD 00:00:00 |
|
|
|
|
* |
|
|
|
|
* @param inputDay |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
@ -271,6 +311,7 @@ public class DateUtils {
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* return YYYY-MM-DD 23:59:59 |
|
|
|
|
* |
|
|
|
|
* @param inputDay |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
@ -285,6 +326,7 @@ public class DateUtils {
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* return YYYY-MM-DD 00:00:00 |
|
|
|
|
* |
|
|
|
|
* @param inputDay |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
@ -298,6 +340,7 @@ public class DateUtils {
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* return YYYY-MM-DD 23:59:59 |
|
|
|
|
* |
|
|
|
|
* @param inputDay |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|