将UTC时间转换为本地时间



我从json服务中检索一些值,检索到的日期时间值以UTC格式存储。我已经尝试了很多示例代码来转换日期时间值到用户本地时区,但转换后我仍然得到相同的值。

这是我实际做的:(从其他帖子复制)

String sJsonDate = "2015-07-08T12:08:13.0625+00:00";
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss");
simpleDateFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
try {
    Date localDateTime = simpleDateFormat.parse(sJsonDate);
} catch (ParseException e) {
    e.printStackTrace();
}

结果值(localDateTime)与原始值相同。我在巴拉圭(GMT-4),结果值需要减去一个小时差,如下所示:("2015-07-08 07:13:25")(值存储在阿根廷)

请帮助!

我找到了解决方案,我们使用的是夏令时,所以我不得不在得到的日期时间上打一个小时的折扣。

所以,我为别人分享代码:

public Date getDateInTimeZone(Date currentDate, String timeZoneId) {
    TimeZone timeZone = TimeZone.getTimeZone(timeZoneId);
    Date localDateTime = new Date(currentDate.getTime() + timeZone.getOffset(currentDate.getTime()));
    Calendar cal = Calendar.getInstance();
    cal.setTimeInMillis(localDateTime.getTime());
    if (timeZone.useDaylightTime()) {
        // time zone uses Daylight Saving
        cal.add(Calendar.MILLISECOND, timeZone.getDSTSavings() * -1);// in milliseconds
    }
    return cal.getTime();
}

用法:

String sDate = "2015-07-08T12:08:13.0625+00:00";
try {    
            SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss");
            Date theDate = simpleDateFormat.parse(sDate);
            Date localDateTime = getDateInTimeZone(theDate, TimeZone.getDefault().getID());
        } catch (ParseException e) {
            e.printStackTrace();
        }

相关内容

  • 没有找到相关文章

最新更新