尝试将澳大利亚/悉尼的String日期转换为澳大利亚/布里斯班。我想要在Java8中使用LocalDateTime
我尝试过使用日期并可以正常工作,但不建议使用日期。
String sdate = "2019-01-14T01:42:00.19+11:00";
DateFormat format = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSXXX");
format.setTimeZone(TimeZone.getTimeZone("Australia/Brisbane"));
try {
Date dd = format.parse(sdate);
DateFormat teradataFormate = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
System.out.println(teradataFormate.format(dd));
} catch (ParseException e) {
e.printStackTrace();
}
//Code that doesn't work with LocalDateTime
String sdate = "2019-01-14T01:42:00.19+11:00";
LocalDateTime ldt = LocalDateTime.parse(sdate, DateTimeFormatter.ofPattern("yyyy-MM-dd'T'HH:mm:ss.SSSXXX"));
ZonedDateTime brisy = ldt.atZone(ZoneId.of("Australia/Brisbane"));
DateTimeFormatter format1 = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
System.out.println(format1.format(brisy));
预计:2019-01-14 00:42:00 实际:2019-01-14 01:42:00
答案 0 :(得分:3)
使用ZonedDateTime代替LocalDateTime。 LocalDateTime不支持夏令时。
与withZoneSameLocal一起使用withZoneSameInstant()接口
ZonedDateTime sydneyTime = ZonedDateTime.parse(sdate);
ZonedDateTime brisyTime = sydneyTime.withZoneSameInstant(ZoneId.of("Australia/Brisbane"));
DateTimeFormatter format1 = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
System.out.println(brisyTime.format(format1));