Here you can find the source of converterZoneDatetimeToLocalDateTime( final String date)
public static LocalDateTime converterZoneDatetimeToLocalDateTime( final String date)
//package com.java2s; //License from project: Open Source License import java.time.LocalDateTime; import java.time.ZonedDateTime; public class Main { public static LocalDateTime converterZoneDatetimeToLocalDateTime( final String date) { ZonedDateTime zdt = ZonedDateTime.parse(date); return zdt.toLocalDateTime(); }/* w w w . j ava 2 s. c o m*/ }