如何将长本地时间戳转换为字符串UTC时间戳

时间:2018-05-29 12:29:46

标签: java java-8 timezone timestamp

This question离我很近,但我发现答案不适合我。我有时间戳长。

ts = 1362156863140L

因为它很长,我认为它是时区天真的时间戳,是吗?这是科隆当地时间的时间戳 - UTC + 0200(CET)。因此,当我将其转换为字符串时区感知时间戳时,我想获得:

2013-03-01T14:54:23.140Z

2013-03-01T16:54:23.140+02:00

我在问题的开头使用了解答:

Instant.ofEpochMilli(timestamp).atOffset(ZoneOffset.of("+2"));

返回:

2013-03-01T18:54:23.140+02:00

另一个时区:

Instant.ofEpochMilli(timestamp).atOffset(ZoneOffset.of("Z"));

返回:

2013-03-01T16:54:23.140Z

所以这些方法并没有真正改变时区,只是改变了时间戳的表示。我还尝试了另一种方法:

OffsetDateTime.ofInstant(Instant.ofEpochMilli(timestamp), ZoneId.of("UTC"));

但结果完全一样。 This solutions很有用,但原创方法:

int offset = TimeZone.getTimeZone("Europe/Amsterdam").getRawOffset();
long newTime = timestamp - offset;

夏季/冬季时间并不统一。建议的答案使用Calendar类,这对JDK8来说已经过时了。有效且显而易见的是:

OffsetDateTime.ofInstant(Instant.ofEpochMilli(Timestamp), ZoneId.of("UTC")).minusSeconds(7200);

但这不是一个正确的方法,所以我怎么能用时区做到这一点?

1 个答案:

答案 0 :(得分:1)

我认为时间戳位于UTC,您需要将时间戳更改为CET。看一下withZoneSameInstant()方法,可能会有所帮助。

    long timeStamp = 1362156863140L;
    ZoneId sourceZone = ZoneId.of("UTC");
    ZoneId targetZone = ZoneId.of("CET");
    String s = ZonedDateTime.ofInstant(Instant.ofEpochMilli(timeStamp), sourceZone)
            .withZoneSameLocal(targetZone)
            .toString();
    System.out.println(s);