我根据设置定期使用位置管理器获取位置,在测试用例中使用 2 分钟并尝试使用 location.geTime() 方法。我没有使用 LocationManager.getLastKnownLocation()。文件说它是 UTC 时间,我将其转换为本地时间,如下所示:
Date d = new Date(location.getTime());
SimpleDateFormat sdf = new SimpleDateFormat("yyMMddkkmmss';
sdf.setTimeZone(TimeZone.getTimneZone("UTC");
sdf.format(d);
但我得到的日期与我的预期不同。我正在写的当前时间大约是 130516155000(2013-05-16 15:50:00) 但我得到的是 040015130515。我删除了时区并将时区也设置为“GMT”并且日期固定但时间完全不同. 在真实设备和模拟器中是相同的。而且我已经检查了两者的时区设置,它们是正确的。请告诉我我错过了什么?
谢谢。
编辑:
我添加更多。
Log:
05-16 16:09:30.227: D/location.getTime()(1279): 1368590417000
05-16 16:09:30.237: D/NMEAGPRMCTime(1279): 040017
05-16 16:09:30.247: D/NMEAGPRMCDate(1279): 130515
代码:
public static String NMEAGPRMCTime(Date d)
{
SimpleDateFormat sdf = new SimpleDateFormat("kkmmss");
sdf.setTimeZone(TimeZone.getTimeZone("UTC"));
String result = sdf.format(d);
Log.d("NMEAGPRMCTime", result);
return result;
}
public static String NMEAGPRMCDate(Date d)
{
SimpleDateFormat sdf = new SimpleDateFormat("yyMMdd");
sdf.setTimeZone(TimeZone.getTimeZone("UTC"));
String result = sdf.format(d);
Log.d("NMEAGPRMCDate", result);
return result;
}
而已。这正是我使用的代码。