1

这是我的代码,但在更改时区后得到相同的时间戳。

TimeZone timeZone = TimeZone.getTimeZone("GMT+11");
Calendar cal1 = Calendar.getInstance();
Calendar cal2 = Calendar.getInstance();

cal1.setTimeInMillis(Long.parseLong(classListDto.get(i)
    .getClassStartTime()) * THOUSAND);
cal2.setTimeInMillis(Long.parseLong(classListDto.get(i)
    .getClassEndTime()) * THOUSAND);
cal1.setTimeZone(timeZone);
cal2.setTimeZone(timeZone);

long startTimestamp = cal1.getTimeInMillis();
long endTimestamp = cal2.getTimeInMillis();
4

2 回答 2

1

尝试这样的事情,而不是在您的Calendar实例中设置时区。

TimeZone timeZone = TimeZone.getTimeZone("GMT+11");
Calendar cal1 = Calendar.getInstance();
cal1.setTimeInMillis(Long.parseLong(classListDto.get(i).getClassStartTime()) * THOUSAND);

Date tempDate = cal1.getTime();
SimpleDateFormat df = new SimpleDateFormat();
SimpleDateFormat df1 = new SimpleDateFormat();

df.setTimeZone(timeZone);
Date gmtDate = df1.parse(df.format(tempDate)); // Put this in a Try/Catch block

long startTimestamp = gmtDate.getTime();

希望这可以帮助!我知道使用 2 个SimpleDateFormat对象很糟糕。

于 2013-03-01T07:15:52.780 回答
0

cal1.getField(Calendar.HOUR);如果您执行 a而不仅仅是读取毫秒数,您可以在代码中看到时区更改。日历似乎仅根据 UTC 存储毫秒:http: //docs.oracle.com/javase/1.5.0/docs/api/java/util/Calendar.html#getTimeInMillis()

于 2013-03-01T07:24:45.553 回答