小编典典

如何使用Java处理日历TimeZones?

java

我有一个来自我的应用程序的时间戳值。用户可以在任何给定的本地TimeZone中。

由于此日期用于假定给定时间始终为格林尼治标准时间的Web服务,因此我需要将用户的参数从(EST)转换为(GMT)。这是一个关键点:用户忽略了自己的TZ。他输入了要发送给WS的创建日期,所以我需要的是:

用户输入: 2008年5月1日下午6:12(美国东部标准时间)
WS的参数必须为:2008年5月1日下午6:12(格林尼治标准时间)

我知道默认情况下始终应该将TimeStamps设置为GMT,但是即使在我从TS(应该在GMT中)创建了日历的情况下,发送参数时,除非用户处于GMT中,否则时间总是会关闭。我想念什么?

Timestamp issuedDate = (Timestamp) getACPValue(inputs_, "issuedDate");
Calendar issueDate = convertTimestampToJavaCalendar(issuedDate);
...
private static java.util.Calendar convertTimestampToJavaCalendar(Timestamp ts_) {
  java.util.Calendar cal = java.util.Calendar.getInstance(
      GMT_TIMEZONE, EN_US_LOCALE);
  cal.setTimeInMillis(ts_.getTime());
  return cal;
}

阅读 520

收藏
2020-03-05

共1个答案

小编典典

我从应用程序中获取的时间戳已调整为用户的TimeZone。因此,如果用户输入的是美国东部标准时间下午6:12,我将获得格林尼治标准时间2:12。我需要的是一种撤消转换的方法,这样用户输入的时间就是我发送到WebServer请求的时间。这是我的完成方式:

// Get TimeZone of user
TimeZone currentTimeZone = sc_.getTimeZone();
Calendar currentDt = new GregorianCalendar(currentTimeZone, EN_US_LOCALE);
// Get the Offset from GMT taking DST into account
int gmtOffset = currentTimeZone.getOffset(
    currentDt.get(Calendar.ERA), 
    currentDt.get(Calendar.YEAR), 
    currentDt.get(Calendar.MONTH), 
    currentDt.get(Calendar.DAY_OF_MONTH), 
    currentDt.get(Calendar.DAY_OF_WEEK), 
    currentDt.get(Calendar.MILLISECOND));
// convert to hours
gmtOffset = gmtOffset / (60*60*1000);
System.out.println("Current User's TimeZone: " + currentTimeZone.getID());
System.out.println("Current Offset from GMT (in hrs):" + gmtOffset);
// Get TS from User Input
Timestamp issuedDate = (Timestamp) getACPValue(inputs_, "issuedDate");
System.out.println("TS from ACP: " + issuedDate);
// Set TS into Calendar
Calendar issueDate = convertTimestampToJavaCalendar(issuedDate);
// Adjust for GMT (note the offset negation)
issueDate.add(Calendar.HOUR_OF_DAY, -gmtOffset);
System.out.println("Calendar Date converted from TS using GMT and US_EN Locale: "
    + DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT)
    .format(issueDate.getTime()));

代码的输出为:(用户输入时间:5/1/2008 6:12 PM(美国东部标准时间)

当前用户的时区:EST
与GMT的当前偏移量(以小时为单位):-4(通常为-5,DST调整除外)
ACP的TS:2008-05-01 14:12:
00.0日历日期使用GMT和US_EN语言环境从TS转换而来:08/5/1下午6:12(GMT)

2020-03-05