java-ZonedDateTime將正常時間戳轉換爲yyyy-MM-dd'T'HH:mm:ssz格式的時間戳

DateTimeFormatter formatter0 = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss").withZone(ZoneId.of("Asia/Shanghai"));html

DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd'T'HH:mm:ssz");orm

ZonedDateTime zoneTime = ZonedDateTime.parse("2018-08-07 08:00:01", formatter0);htm

System.out.println(zoneTime.withFixedOffsetZone().format(formatter));blog

 

輸出結果:2018-08-07T08:00:01+08:00get

此處有ZonedDateTime類的詳細API:it

http://www.cnblogs.com/lshan/p/9221296.htmlform

相關文章
相關標籤/搜索