将Android中的UTC时间转换为GMT时间

时间:2019-04-16 15:48:13

标签: android time timezone timezone-offset

我的UTC时间长值= 1555415100000L。 现在,我想转换为不同时区的本地时间。

示例:

1555415100000L = 2019/04/16 18:45(GMT + 7)

1555415100000L = 2019/04/16 14:45(GMT + 3) ...

您有解决此问题的建议吗?

1 个答案:

答案 0 :(得分:0)

我写了这个方法。此方法以格式化的String返回特定的GMT。您应该为此方法提供时间(以毫秒为单位)和GMT值。

private String getSpecificGmtDate(long timeMillis, int gmt) {
    long time = timeMillis + (gmt * 1000 * 60 * 60);
    SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy HH:mm");
    sdf.setTimeZone(TimeZone.getTimeZone("GMT"));
    return (sdf.format(new Date(time)) + " (GMT " + gmt + ")");
}

输出:

System.out.println(getSpecificGmtDate(1555415100000L, 0));
16/04/2019 11:45 (GMT 0)
System.out.println(getSpecificGmtDate(1555415100000L, 3));
16/04/2019 14:45 (GMT 3)
System.out.println(getSpecificGmtDate(1555415100000L, -3));
16/04/2019 08:45 (GMT -3)