概述
/**
* 日期工具类
*
* @author yangzihe
* @date 2022/1/7
*/
@Slf4j
public class DateUtils {
/**
* 默认的日期时间格式 yyyy-MM-dd HH:mm:ss
*/
private static final DateTimeFormatter DEFAULT_DATE_TIME_FORMATTER = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
/**
* 年月日的日期时间格式 yyyy-MM-dd
*/
private static final DateTimeFormatter DAY_DATE_TIME_FORMATTER = DateTimeFormatter.ofPattern("yyyy-MM-dd");
/**
* 时间戳 -> yyyy-MM-dd HH:mm:ss
*
* @param timestamp 时间戳
*
* @return 默认日期字符串 yyyy-MM-dd HH:mm:ss
*/
public static String timestampToDefaultString(Long timestamp) {
if (timestamp == null) {
return null;
}
LocalDateTime localDateTime = timestampToLocalDateTime(timestamp);
return DEFAULT_DATE_TIME_FORMATTER.format(localDateTime);
}
/**
* 时间戳 -> yyyy-MM-dd
*
* @param timestamp 时间戳
*
* @return 年月日字符串 yyyy-MM-dd
*/
public static String timestampToDayString(Long timestamp) {
if (timestamp == null) {
return null;
}
LocalDate localDate = timestampToLocalDate(timestamp);
return DAY_DATE_TIME_FORMATTER.format(localDate);
}
/**
* Date -> yyyy-MM-dd HH:mm:ss
*
* @param date Date
*
* @return 默认日期字符串 yyyy-MM-dd HH:mm:ss
*/
public static String dateToDefaultString(Date date) {
if (date == null) {
return null;
}
LocalDateTime localDateTime = dateToLocalDateTime(date);
return DEFAULT_DATE_TIME_FORMATTER.format(localDateTime);
}
/**
* Date -> yyyy-MM-dd
*
* @param date Date
*
* @return 年月日字符串 yyyy-MM-dd
*/
public static String dateToDayString(Date date) {
if (date == null) {
return null;
}
LocalDate localDate = dateToLocalDate(date);
return DAY_DATE_TIME_FORMATTER.format(localDate);
}
/**
* 日期增加
*
* @param date Date
* @param amountToAdd 增加的数量
* @param unit 单位 秒、分钟、小时、天、星期、月、年
*
* @return 增加后的日期
*/
public static Date plus(Date date, Long amountToAdd, ChronoUnit unit) {
if (date == null || amountToAdd == null || unit == null) {
return null;
}
LocalDateTime localDateTime = dateToLocalDateTime(date);
LocalDateTime plusLocalDateTime = localDateTime.plus(amountToAdd, unit);
return localDateTimeToDate(plusLocalDateTime);
}
/**
* 日期减去
*
* @param date Date
* @param amountToSubtract 减去的数量
* @param unit 单位 秒、分钟、小时、天、星期、月、年
*
* @return 减去后的日期
*/
public static Date minus(Date date, Long amountToSubtract, ChronoUnit unit) {
if (date == null || amountToSubtract == null || unit == null) {
return null;
}
LocalDateTime localDateTime = dateToLocalDateTime(date);
LocalDateTime minusLocalDateTime = localDateTime.minus(amountToSubtract, unit);
return localDateTimeToDate(minusLocalDateTime);
}
/**
* Date -> 当天0点时间戳 00:00:00
*
* @param date Date
*
* @return 当天0点时间戳
*/
public static Long dateToZeroTimestamp(Date date) {
if (date == null) {
return null;
}
LocalDate localDate = dateToLocalDate(date);
return localDateTimeToTimestamp(LocalDateTime.of(localDate, LocalTime.MIN));
}
/**
* Date -> 当天结束时间戳 23:59:59
*
* @param date Date
*
* @return 当天结束时间戳
*/
public static Long dateToDayEndTimestamp(Date date) {
if (date == null) {
return null;
}
LocalDate localDate = dateToLocalDate(date);
return localDateTimeToTimestamp(LocalDateTime.of(localDate, LocalTime.MAX));
}
/**
* timestamp -> 当天0点时间戳
*
* @param timestamp 时间戳
*
* @return 当天0点时间戳
*/
public static Long timestampToZeroTimestamp(Long timestamp) {
if (timestamp == null) {
return null;
}
LocalDate localDate = timestampToLocalDate(timestamp);
return localDateTimeToTimestamp(LocalDateTime.of(localDate, LocalTime.MIN));
}
/**
* timestamp -> 当天结束时间戳 23:59:59
*
* @param timestamp 时间戳
*
* @return 当天结束时间戳
*/
public static Long timestampToDayEndTimestamp(Long timestamp) {
if (timestamp == null) {
return null;
}
LocalDate localDate = timestampToLocalDate(timestamp);
return localDateTimeToTimestamp(LocalDateTime.of(localDate, LocalTime.MAX));
}
/**
* 日期间隔
*
* @param start 开始日期
* @param end 结束日期
* @param unit 单位 秒、分钟、小时、天、星期、月、年
*
* @return 间隔值
*/
public static Long interval(Date start, Date end, ChronoUnit unit) {
if (start == null || end == null || unit == null) {
return null;
}
LocalDateTime startLocalDateTime = dateToLocalDateTime(start);
LocalDateTime endLocalDateTime = dateToLocalDateTime(end);
return startLocalDateTime.until(endLocalDateTime, unit);
}
/**
* Date -> LocalDateTime
*
* @param date Date
*
* @return LocalDateTime
*/
public static LocalDateTime dateToLocalDateTime(Date date) {
if (date == null) {
return null;
}
Instant instant = date.toInstant();
// 系统默认时区:当前容器时区都是统一的东8区
ZoneId zone = ZoneId.systemDefault();
return LocalDateTime.ofInstant(instant, zone);
}
/**
* Date -> LocalDate
*
* @param date Date
*
* @return LocalDate
*/
public static LocalDate dateToLocalDate(Date date) {
if (date == null) {
return null;
}
Instant instant = date.toInstant();
// 系统默认时区:当前容器时区都是统一的东8区
ZoneId zone = ZoneId.systemDefault();
return instant.atZone(zone).toLocalDate();
}
/**
* 时间戳 -> LocalDate
*
* @param timestamp Date
*
* @return LocalDate
*/
public static LocalDate timestampToLocalDate(Long timestamp) {
if (timestamp == null) {
return null;
}
// 系统默认时区:当前容器时区都是统一的东8区
ZoneId zone = ZoneId.systemDefault();
return Instant.ofEpochMilli(timestamp).atZone(zone).toLocalDate();
}
/**
* 时间戳 -> LocalDateTime
*
* @param timestamp 时间戳
*
* @return LocalDateTime
*/
public static LocalDateTime timestampToLocalDateTime(Long timestamp) {
if (timestamp == null) {
return null;
}
Instant instant = Instant.ofEpochMilli(timestamp);
// 系统默认时区:当前容器时区都是统一的东8区
ZoneId zoneId = ZoneId.systemDefault();
return LocalDateTime.ofInstant(instant, zoneId);
}
/**
* LocalDateTime -> 时间戳
*
* @param localDateTime LocalDateTime
*
* @return 时间戳
*/
public static Long localDateTimeToTimestamp(LocalDateTime localDateTime) {
if (localDateTime == null) {
return null;
}
// 系统默认时区:当前容器时区都是统一的东8区
ZoneId zoneId = ZoneId.systemDefault();
return localDateTime.atZone(zoneId).toInstant().toEpochMilli();
}
/**
* LocalDateTime -> Date
*
* @param localDateTime LocalDateTime
*
* @return Date
*/
public static Date localDateTimeToDate(LocalDateTime localDateTime) {
if (localDateTime == null) {
return null;
}
// 系统默认时区:当前容器时区都是统一的东8区
ZoneId zoneId = ZoneId.systemDefault();
return Date.from(localDateTime.atZone(zoneId).toInstant());
}
/**
* Date -> 时间戳
*
* @param date 日期
*
* @return 时间戳
*/
public static Long getTimestampByDate(Date date) {
return date == null ? null : date.getTime();
}
}
最后
以上就是大胆电脑为你收集整理的JDK8 日期工具类DateUtils的全部内容,希望文章能够帮你解决JDK8 日期工具类DateUtils所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复