Java-从时区偏移量和日期中获取转换后的日期



我的客户告诉我,他会给我提供时区偏移和日期。我需要相应地将日期转换为GMT。

我不确定我是否正确。我认为偏移是指从格林尼治标准时间起上下移动了多少小时,然后将差异应用到转换日期的时间。

请看下面我正在努力实现客户期望的内容。

TimeZone timezone = TimeZone.getTimeZone("GMT");
timezone.setRawOffset(28800000);

如果上面的代码行是正确的,那么获取转换日期的代码是什么?请建议。。。

问候

您将需要使用日历类

public static Calendar convertToGmt(Calendar cal) {
    Date date = cal.getTime();
    TimeZone tz = cal.getTimeZone();
    log.debug("input calendar has date [" + date + "]");
    //Returns the number of milliseconds since January 1, 1970, 00:00:00 GMT 
    long msFromEpochGmt = date.getTime();
    //gives you the current offset in ms from GMT at the current date
    int offsetFromUTC = tz.getOffset(msFromEpochGmt);
    log.debug("offset is " + offsetFromUTC);
    //create a new calendar in GMT timezone, set to this date and add the offset
    Calendar gmtCal = Calendar.getInstance(TimeZone.getTimeZone("GMT"));
    gmtCal.setTime(date);
    gmtCal.add(Calendar.MILLISECOND, offsetFromUTC);
    log.debug("Created GMT cal with date [" + gmtCal.getTime() + "]");
    return gmtCal;
}

从这里获取

相关内容

  • 没有找到相关文章

最新更新