LocalDateTime与String日期互相转换

public static void main(String[] args) {
        DateTimeFormatter df = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
        LocalDateTime time = LocalDateTime.now();
        String localTime = df.format(time);
        LocalDateTime ldt = LocalDateTime.parse("2018-01-12 17:07:05",df);
        System.out.println("LocalDateTime转成String类型的时间:"+localTime);
        System.out.println("String类型的时间转成LocalDateTime:"+ldt);
    }

 

 

LocalDateTime转成String类型的时间:2018-01-12 17:36:52
String类型的时间转成LocalDateTime:2018-01-12T17:07:05

你可能感兴趣的:(LocalDateTime与String日期互相转换)