0

我有两个问题:

1- 从 Android 设备获取 UTC 时间 2- 将其转换为 UNIX 时间格式(毫秒)

我感谢任何反馈可以提供帮助

4

1 回答 1

0

我相信这应该有效:

Date now = Calendar.getInstance().getTime(); // this gets you current time as a Date
long milis = now.getTime(); // this gets you current time in UNIX format
于 2012-11-21T08:36:01.017 回答