我的设备 MILLISECONDS 当前时间。
现在我需要将其转换为 MILLISECONDS OF UTC TIME-ZONE
所以我试试这个,但它没有以毫秒为单位进行转换。
public static long localToUTC(long time) {
try {
SimpleDateFormat sdf = new SimpleDateFormat("MMM dd, yyyy hh:mm:ss a");
sdf.setTimeZone(TimeZone.getTimeZone("UTC"));
Log.e("* UTC : " + time, " - " + sdf.format(new Date(time)));
Date date = sdf.parse(sdf.format(new Date(time)));
long timeInMilliseconds = date.getTime();
Log.e("Millis in UTC", timeInMilliseconds + "" + new SimpleDateFormat("MMM dd, yyyy hh:mm:ss a").format(date));
return timeInMilliseconds;
} catch (Exception e) {
Log.e("Exception", "" + e.getMessage());
}
return time;
}
反之亦然 UTC MILLISECOND 同本地时区MILLISECOND
请给我一些建议。
答案 0 :(得分:1)
对于LOCAL到UTC毫秒,反之亦然
LOCAL TO UTC
public static long localToUTC(long time) {
try {
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy.MM.dd HH:mm:ss");
Date date = new Date(time);
dateFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
String strDate = dateFormat.format(date);
// System.out.println("Local Millis * " + date.getTime() + " ---UTC time " + strDate);//correct
SimpleDateFormat dateFormatLocal = new SimpleDateFormat("yyyy.MM.dd HH:mm:ss");
Date utcDate = dateFormatLocal.parse(strDate);
// System.out.println("UTC Millis * " + utcDate.getTime() + " ------ " + dateFormatLocal.format(utcDate));
long utcMillis = utcDate.getTime();
return utcMillis;
} catch (Exception e) {
e.printStackTrace();
}
return time;
}
和 UTC TO LOCAL
public static long utcToLocal(long utcTime) {
try {
Time timeFormat = new Time();
timeFormat.set(utcTime + TimeZone.getDefault().getOffset(utcTime));
return timeFormat.toMillis(true);
} catch (Exception e) {
e.printStackTrace();
}
return utcTime;
}
谢谢,我得到了这个解决方案
答案 1 :(得分:0)
关于您的代码的一些观察:
您将格式化程序设置为UTC,因此您将时间参数解释为UTC,而不是“本地毫秒”,如:sdf.format(new Date(time)));
中所述。
Date date = sdf.parse(sdf.format(new Date(time)));
没有任何意义。您可以在不需要格式化和解析的情况下编写:Date date = new Date(time);
我不知道你从哪里得到时间参数。但你的声明,这被解释为“本地毫秒”似乎是基于一个误解。在UTC时间线处理全局有效时刻/时刻时,与测量即时时间无关(将时钟故障排除在外)无关紧要。因此,时间参数可能已经通过System.currentTimeMillis()
等测量为设备时间,但您可以直接将其与任何其他时刻(甚至在其他设备上)进行比较,而无需转换。
如果你真的有“本地毫秒”(不应该在专用时区库之外公开处理),那么你需要一个时区偏移来处理转换,否则它是任意猜测。这种转换的公式将是伪代码:
[utc-time] = [local-time]减去[zone offset]