我使用的是Freemarker版本2.3.20。Freemarker在不同時區打印日期
我有其中兩個日期都包含一個數據結構 - 一個在當地時間,一個在UTC時間。
// 2017-07-17 18:30 UTC
ZonedDateTime utcTime = ZonedDateTime.of(2017, 7, 17, 18, 30, 0, 0, ZoneId.of("UTC"));
// 2017-07-17 20:30 (+02:00)
ZonedDateTime localTime = utcTime.withZoneSameInstant(ZoneId.of("Europe/Berlin"));
Freemarker的只能處理java.util.Date
所以我移交日期。
Map<String, Object> mapping = new HashMap<String, Object>();
mapping.put("departureTimeLocal", Date.from(localTime.toInstant()));
mapping.put("departureTimeUtc", Date.from(utcTime.toInstant()));
在我的模板我會想到寫這樣的:
Departure (local): ${departureTimeLocal?string['HH:mm']}
Departure (UTC) : ${departureTimeUtc?string['HH:mm']}
而作爲一個結果,我想看到:
Departure (local): 20:30
Departure (UTC) : 18:30
我看到的目前是:
Departure (local): 20:30
Departure (UTC) : 20:30 <#-- timestamp interpreted in local time -->
我也試過了一些東西像:
Departure (converted): ${(departureTimeLocal?string['yyyy-MM-dd HH:mm'] + ' UTC')?datetime['yyyy-MM-dd HH:mm z']?string['HH:mm']}
--> Departure (converted): 22:30
什麼是最好的方式來存檔這樣的東西?
是的我知道:java.util.Date
並沒有真正的時區(僅用於打印)而localTime/utcTime.toInstant()
都映射到祖魯時間的相同時刻。
一種解決方法是'departureTimeUtc = utcTime.withZoneSameLocal(ZoneId.of(「Europe/Berlin」));' – 2017-07-18 17:40:06
它會給出預期的輸出,@ Hugo,但是我們真的不想要這樣的黑客攻擊有什麼辦法可以拿出更好的東西... –
@ OleV.V。的確,這就是我稱之爲「解決方法」的原因。我不使用freemarker,所以我不知道它是否有一些方法來配置日期格式 – 2017-07-18 19:48:06