Here you can find the source of convertToLocalDateTime(String time)
public static LocalDateTime convertToLocalDateTime(String time)
//package com.java2s; //License from project: Open Source License import java.time.LocalDateTime; import java.time.format.DateTimeFormatter; public class Main { private static final DateTimeFormatter dateTimeFormatter = DateTimeFormatter .ofPattern("yyyyMMddHHmmss"); public static LocalDateTime convertToLocalDateTime(String time) { time = time.substring(0, time.indexOf(".")); return LocalDateTime.parse(time, dateTimeFormatter); }// w ww.ja v a2 s . c o m }