JDK1.8中LocalDateTime 与 Date 通过 Instant(瞬时 即时) 进行互转
具体可用查看 Date 与 LocalDateTime 源码
主要方法:
// Date 源码主要方法
public static Date from(Instant instant) {
try {
return new Date(instant.toEpochMilli());
} catch (ArithmeticException ex) {
throw new IllegalArgumentException(ex);
}
}
public Instant toInstant() {
return Instant.ofEpochMilli(getTime());
}
//LocalDateTime 源码主要方法
public ZonedDateTime atZone(ZoneId zone) {
return ZonedDateTime.of(this, zone);
}
default Instant toInstant() {
return Instant.ofEpochSecond(toEpochSecond(), toLocalTime().getNano());
}
Date 源码
Date.from()
/**
* 从{@code Instant}对象中获取一个{@code Date}的实例。
*
* <p>
* <p>
* {@code Instant}使用纳秒精度,而{@code Date}
* <p>
* 使用毫秒的精度。转换将transtransany
* <p>
* 以纳秒为单位的额外精度信息
* <p>
* 受制于100万的整数除法。
*
* <p>
* <p>
* {@code Instant}可以在未来进一步存储时间线上的点
* <p>
* 和比{@code Date}更远的过去。在这个场景中,这个方法
* <p>
* 将抛出异常。
*
* @param instant即时转换 返回一个{@code Date},表示时间线上的同一点
* <p>
* 提供的即时
* @throws NullPointerException如果{@code instant}为空。
* @throws IllegalArgumentException,如果瞬间太大 表示为{@code Date}
* @since 1.8
*/
public static Date from(Instant instant) {
try {
return new Date(instant.toEpochMilli());
} catch (ArithmeticException ex) {
throw new IllegalArgumentException(ex);
}
}
demo
// LocalDateTime 转 Date
LocalDateTime localDateTime = LocalDateTime.now();
Date date2 = Date.from(localDateTime.atZone(ZoneId.systemDefault()).toInstant());
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
System.out.println(simpleDateFormat.format(date2));
// Date 转 LocalDate
Date date3 = new Date();
LocalDateTime localDateTime1 =
date3.toInstant().atZone(ZoneId.systemDefault()).toLocalDateTime();
System.out.println(localDateTime1);
String 转 Date
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
// String 转 Date
Date date6 = format.parse("2022-06-14 15:28:04");
System.out.println("SimpleDateFormat String 转 Date :" + date6);
// 时间戳(毫秒 ) 转 日期格式
// 时间戳转 Date 直接 new Date(时间戳)
Date date5 = new Date(1655192442000L)
// Date 转 String
String data5Str = format.format(date5);
System.out.println("时间戳:"+data5Str);