xxxxxxxxxx
LocalDateTime ldt = LocalDateTime.now(); //Local date time
ZoneId zoneId = ZoneId.of( "Asia/Kolkata" ); //Zone information
ZonedDateTime zdtAtAsia = ldt.atZone( zoneId ); //Local time in Asia timezone
ZonedDateTime zdtAtET = zdtAtAsia
.withZoneSameInstant( ZoneId.of( "America/New_York" ) ); //Sama time in ET timezone
xxxxxxxxxx
ZonedDateTime zdtAtET = ZonedDateTime.now(ZoneId.of("America/New_York"));
LocalDateTime ldt = zdtAtET.toLocalDateTime();
System.out.println(zdtAtET);
System.out.println(ldt);