java.time.Instant atOffset()方法
java.time.Instant.atOffset(ZoneOffset offset)方法将此瞬间与偏移量组合在一起以创建OffsetDateTime。
1 语法
public OffsetDateTime atOffset(ZoneOffset offset)
2 参数
offset:要与之结合的偏移量,而不是null。
3 返回值
从此瞬间和指定的偏移量形成的偏移日期时间,不为空。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.time.Instant atOffset()方法
*/
import java.time.Instant;
import java.time.OffsetDateTime;
import java.time.ZoneOffset;
import java.time.ZonedDateTime;
public class InstantDemo {
public static void main(String[] args) {
Instant instant = Instant.parse("2017-02-03T10:37:30.00Z");
System.out.println(instant);
ZoneOffset offset = ZoneOffset.ofHours(5);
OffsetDateTime date = instant.atOffset(offset);
System.out.println(date);
}
}
输出结果为:
2017-02-03T10:37:30Z
2017-02-03T15:37:30+05:00
热门文章
优秀文章