LocalDateTime ,Date 互转

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);

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值