我在Android中创建一个微调器,然后获取微调器的值并尝试计算时区ID中的本地时间。
在以下示例中,timeZoneID是时区ID的字符串表示,例如“美国/芝加哥”等。
DateTimeZone tz = DateTimeZone.forID(timeZoneID);
DateTime now = DateTime.now(DateTimeZone.forID(timeZoneID));
DateTime localTime1 = now.toDateTime(tz);
float minuteRotation = localTime1.getMinuteOfDay() / 30f * (float) Math.PI;
float hourRotation = ((localTime1.getHourOfDay() + localTime1.getMinuteOfDay() / 60f) / 6f) * (float) Math.PI;
但问题是,时区的本地时间总是错误的。例如,如果PST时间应该是晚上8点,那么我从上面的代码返回下午5点。
所有时区ID都是正确的,并且是从Joda时间本身获得的,这些时间填充在以下微调器中:
Set<String> zoneIds = DateTimeZone.getAvailableIDs();
DateTimeFormatter dateTimeFormatter = DateTimeFormat.forPattern("ZZ");
ArrayList<String> TZ1 = new ArrayList<String>();
for(String zoneId:zoneIds) {
TZ1.add("("+dateTimeFormatter.withZone(DateTimeZone.forID(zoneId)).print(0) +") "+zoneId+", "+TimeZone.getTimeZone(zoneId).getDisplayName());
}
for(int i = 0; i < TZ1.size(); i++) {
adapter.add(TZ1.get(i));
}
final Spinner TZone = (Spinner)findViewById(R.id.TimeZoneEntry);
TZone.setAdapter(adapter);
for(int i = 0; i < TZ1.size(); i++) {
if(TZ1.get(i).equals(TimeZone.getDefault().getDisplayName())) {
TZone.setSelection(i);
}
}
问题:为什么我从Joda时间到当地时间不正确?我最终试图解决这个问题!
答案 0 :(得分:0)
以下代码作为测试报告我的时区设置的正确本地时间:
@Test
public void timeTest()
{
String timeZoneID = "Europe/Berlin";
DateTimeZone tz = DateTimeZone.forID(timeZoneID);
DateTime now = DateTime.now(DateTimeZone.forID(timeZoneID));
DateTime localTime1 = now.toDateTime(tz);
System.err.println(localTime1 + " " + localTime1.getZone().getID() + " Default: " + TimeZone.getDefault().getID());
}
目前的设置不应该是PDT
而不是PST
吗?而“美国/芝加哥”距离PDT还有3小时的路程。