我正在尝试使用以下功能将PST时间转换为设备本地时间。它工作正常,但在伦敦时区它不能正常工作。如果它在太平洋标准时间上午04:58那么它应该按照伦敦时区显示12:58 PM,但它显示在上午12:58。我在这做错什么吗?请指导。
System.out.println("2015-06-23 04:58:00 AM = "
+ getFormattedTimehhmm(new TimeTest()
.getTimeRelativeToDevice("2015-06-23 04:58:00 AM")));
public String getTimeRelativeToDevice(String pstTime) {
final String DATE_TIME_FORMAT = "yyyy-MM-dd hh:mm:ss a";
SimpleDateFormat sdf = new SimpleDateFormat(DATE_TIME_FORMAT);
TimeZone fromTimeZone = TimeZone.getTimeZone("America/Los_Angeles");
TimeZone toTimeZone = TimeZone.getTimeZone("Europe/London");
// Get a Calendar instance using the default time zone and locale.
Calendar fromCalendar = Calendar.getInstance();
// Set the calendar's time with the given date
fromCalendar.setTimeZone(fromTimeZone);
try {
fromCalendar.setTime(sdf.parse(pstTime));
} catch (ParseException e) {
e.printStackTrace();
}
System.out.println("Input: " + fromCalendar.getTime() + " in "
+ fromTimeZone.getDisplayName());
return sdf.format(fromCalendar.getTime());
}
答案 0 :(得分:1)
我同意Moritz的看法,使用Joda Time会使代码变得更简单,但是你应该能够比当前的方法更简单地完成所有这些 :
public String getTimeRelativeToDevice(String pstTime) {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss a", Locale.US);
sdf.setTimeZone(TimeZone.getTimeZone("America/Los_Angeles"));
Date parsed = sdf.parse(pstTime);
sdf.setTimeZone(TimeZone.getTimeZone("Europe/London"));
return sdf.format(parsed);
}
目前你正在做各种各样的搞乱,但从未指定SimpleDateFormat
的时区,这是重要的部分......
答案 1 :(得分:0)
你应该使用jodatime。它极大地简化了时区转换。例如:
new LocalDateTime(timestamp.getTime()).toDateTime(DateTimeZone.UTC);