gpt4 book ai didi

android - SensorEvent.timestamp 日期转换问题

转载 作者:行者123 更新时间:2023-11-29 16:12:19 31 4
gpt4 key购买 nike

我正在尝试将事件时间戳转换为日期,我的代码:

Calendar c = Calendar.getInstance();
c.setTimeInMillis(event.timestamp/1000000);//time in ms (timestamp is in ns)
System.out.println((new SimpleDateFormat("yyyy-MM-dd HH:mm:ss")).format(c.getTime()));

我怎么会得到 1970-01-02?

最佳答案

我假设您使用的是 SensorEvent.timestamp .文档没有提到这是自上次启动以来以纳秒为单位的唤醒时间(相当于 SystemClock.uptimeMillis() ),而不是自 Unix 纪元以来的时间。简而言之,您的设备似乎已唤醒不到两天。

此外,Calendar.getTime() 返回一个 Date 对象,并且有一个需要毫秒的 Date 构造函数,因此您可以缩短代码:

SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
System.out.println(sdf.format(new Date(event.timestamp / 1000000)));

关于android - SensorEvent.timestamp 日期转换问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12130666/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com