What does Java's BST ZoneId represent?

独自空忆成欢 提交于 2019-12-01 04:08:18

问题


I have stored in the DB this Time Frame: any day from 15:00 to 16:00 in LONDON (BST)

I need to execute a program IF when I receive an event is between this Time Frame.

I am running the Test now in Paris (16:22) where in London is 15:22 (so in between the Time Frame stored in the DB).

SO this is my code

// create Local Date Time from what I have stored in the DB

LocalDateTime dateTime1 = LocalDateTime.of(2017, Month.JUNE, 15, 15, 00);
LocalDateTime dateTime2 = LocalDateTime.of(2017, Month.JUNE, 15, 16, 00);

Instant now = Instant.now();

System.out.println (now.isAfter (dateTime1.atZone(ZoneId.of("BST", ZoneId.SHORT_IDS)).toInstant()));
System.out.println (now.isBefore(dateTime2.atZone(ZoneId.of("BST", ZoneId.SHORT_IDS)).toInstant()));

theoretically now (16:22 in PARIS / 15:22 in LONDON) is after dateTime1 in LONDON (15:00) and before dateTime2 (16:00) in LONDON

but I got that now is not before that dateTime2


回答1:


As indicated in the javadoc of ZonedId.SHORT_IDS, “BST” is not British Summer Time but Bangladesh Standard Time (Asia/Dhaka).

You can check the value with:

System.out.println(ZoneId.of("BST", ZoneId.SHORT_IDS));

So I suggest using full time zone names to avoid any confusion:

ZoneId london = ZoneId.of("Europe/London")


来源:https://stackoverflow.com/questions/44570166/what-does-javas-bst-zoneid-represent

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!