如何計算兩個日期之間的秒差? 我有這樣的: LocalDateTime now = LocalDateTime.now(); // current date and time
LocalDateTime midnight = now.toLocalDate().atStartOfDay().plusDays(1); //midnight
在這種情況下,時間是:now 2017-09-14T0
我寫一個輔助方法,該方法日期的字符串表示,並返回時區 例如: input: 2017-11-02T09:30:00-07:00
output : "America/Los_Angeles"
(此處的輸入爲PST我使用UTC偏差-7:00) Here is my method
public static String getTimeZone(final String date) {