我尝试使用以下公式从Location.getTime()获取本地时间:
private final long TimeOffset = Calendar.getInstance().getTimeZone().getOffset(Calendar.ZONE_OFFSET);
locationManager = (LocationManager) getApplicationContext().getSystemService(Context.LOCATION_SERVICE);
locationlistener = new LocationListener() {
@Override
public void onLocationChanged(Location location) {
boolean wasNull = locFine == null;
if (location.getProvider().equals(android.location.LocationManager.GPS_PROVIDER)) {
locFine = location;
//long TimeOffset = Calendar.getInstance().getTimeZone().getRawOffset();
long gpsTime = locFine.getTime() + TimeOffset;
long SystemTime = Calendar.getInstance().getTimeInMillis();
timeOffsetGPS = gpsTime - SystemTime;
Date dtgps = new Date(locFine.getTime());
Log.d("Location", "Time GPS: " + dtgps); // This is what we want!
if (context != null && a != null) {
if (wasNull) lib.ShowToast(a, getString(R.string.gotGPS));
/*
lib.ShowMessage(a,"gps time: " + dtgps
+ "\nsystem time: " + new Date(SystemTime)
+ "\noffset: " + timeOffsetGPS / 1000
+ "\ncorrected gpstime: " + new Date(gpsTime));
*/
}
}
}
@Override
public void onStatusChanged(String s, int i, Bundle bundle) {
if (a != null) lib.ShowToast(context, context.getString(R.string.gpsstatus) + " " + s);
}
@Override
public void onProviderEnabled(String s) {
if (context != null) lib.ShowToast(context, s + " " + getString(R.string.enabled));
}
@Override
public void onProviderDisabled(String s) {
if (context != null)
lib.ShowMessage(context, s + " " + getString(R.string.disabled));
}
};
try {
if (locationManager.isProviderEnabled(LocationManager.GPS_PROVIDER)) {
locationManager.requestLocationUpdates(
LocationManager.GPS_PROVIDER, 1000, 5, locationlistener);}
但是我在不同的Android版本和不同的模拟器上获得了不同的时间。我怎样才能总是得到正确的时间?
完整的代码是:
?
答案 0 :(得分:0)
来自Location类的getTime()方法的文档,位于https://developer.android.com/reference/android/location/Location.html:
返回此修复的UTC时间,自1970年1月1日起以毫秒为单位。
因此,在onLocationChanged()方法中,您可以获得一个这样的Date对象,它表示获取位置修复时的时间戳(您在代码中间的某个位置确实有这个):
Date fixDateTime = new Date(location.getTime());
由于Date对象在内部将日期/时间存储为UTC,因此您可以使用任何日期/时间格式化函数在任何相关的时区中显示该时间戳。您无需添加或减去任何偏移量。
如果您不熟悉日期/时间格式化功能,请先阅读https://developer.android.com/reference/java/text/SimpleDateFormat.html处的SimpleDateFormat文档。