Android获取当前UTC时间
获取当前UTC时间的函数是什么?我尝试过使用 System.getCurrentTime 但我得到了设备的当前日期和时间。
谢谢
What is the function to get the current UTC time. I have tried with System.getCurrentTime but i get the current date and time of the device.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
System.currentTimeMillis()
确实给出了自 1970 年 1 月 1 日 00:00:00 UTC 以来的毫秒数。您看到当地时间的原因可能是因为您在使用Date
实例之前将其转换为字符串。您可以使用DateFormat
将任何时区的Date
转换为String
:另外 查看此相关问题。
System.currentTimeMillis()
does give you the number of milliseconds since January 1, 1970 00:00:00 UTC. The reason you see local times might be because you convert aDate
instance to a string before using it. You can useDateFormat
s to convertDate
s toString
s in any timezone:Also see this related question.