java.time.ZonedDateTime.withFixedOffsetZone()
方法返回此日期時間並將區域ID設定為偏移量的副本。
以下是java.time.ZonedDateTime.withFixedOffsetZone()
方法的宣告。
public ZonedDateTime withFixedOffsetZone()
ZonedDateTime
區域ID設定為偏移量,不為null
。
以下範例顯示了java.time.ZonedDateTime.withFixedOffsetZone()
方法的用法。
package com.yiibai;
import java.time.ZonedDateTime;
public class ZonedDateTimeDemo {
public static void main(String[] args) {
ZonedDateTime date = ZonedDateTime.parse("2017-03-28T12:25:38.492+05:30[Asia/Calcutta]");
ZonedDateTime result = date.withFixedOffsetZone();
System.out.println(result);
}
}
編譯並執行上面的程式,這將產生以下結果 -
2017-03-28T12:25:38.492+05:30