java utc 时间戳 转 本地时区时间戳
时间: 2023-11-08 10:05:39 浏览: 225
utc时间与本地时间转换工具
要将UTC时间戳转换为本地时区时间戳,可以使用Java 8中的java.time和java.time.zone包。以下是一个示例代码:
```java
import java.time.Instant;
import java.time.LocalDateTime;
import java.time.ZoneId;
import java.time.ZonedDateTime;
public class Main {
public static void main(String[] args) {
// 定义UTC时间戳(秒)
long utcTimestamp = 1626713523;
// 创建UTC时间对象
Instant instant = Instant.ofEpochSecond(utcTimestamp);
// 指定本地时区
ZoneId localZone = ZoneId.of("Asia/Shanghai");
// 将UTC时间转换为ZonedDateTime对象
ZonedDateTime utcDateTime = ZonedDateTime.ofInstant(instant, ZoneId.of("UTC"));
// 将UTC时间转换为本地时间
ZonedDateTime localDateTime = utcDateTime.withZoneSameInstant(localZone);
// 将本地时间转换为本地时间戳(秒)
long localTimestamp = localDateTime.toLocalDateTime().atZone(localZone).toEpochSecond();
System.out.println(localTimestamp);
}
}
```
在这个示例代码中,我们假设UTC时间戳为1626713523,本地时区为亚洲/上海。首先,我们从UTC时间戳创建一个Instant对象。然后,我们使用ZoneId类指定本地时区,并将Instant对象转换为ZonedDateTime对象。接下来,我们将ZonedDateTime对象转换为本地时间,并将其转换为本地时间戳。最后,我们打印输出本地时间戳。
阅读全文