This the epoch mili - 1526581800000
The code which am using for conversion is -
LocalDateTime localDateTime = LocalDateTime.ofInstant(Instant.ofEpochMilli(1526581800000),ZoneId.systemDefault());
System.out.println(localDateTime.format(DateTimeFormatter.ofPattern("dd-MMM-yyyy HH:mm:ss")));
Output which we getting- 17-May-2018 18:30:00
But Expected Output - 18-May-2018 00:00:00