Convert date into AEST using java
问题 I want to convert below date into AEST format using Java. 2018-01-08T02:10:24.000+0000w Below is the code which i am using for to convert . DateTimeFormatter dtf = DateTimeFormatter.ofPattern("yyyy-MM-dd'T'HH:mm:ss.SSSzzz"); ZonedDateTime zdt = ZonedDateTime.parse( map.get("records-LastModifiedDate").toString().trim()); System.out.println(zdt); There is something wrong with the pattern? Please suggest. 回答1: You have to use the formatter when parsing the date string. Also you need to tell it