标签: android datetime time formatting utc
我有两个问题:
1-从Android设备获取UTC时间 2-将其转换为UNIX时间格式(毫秒)
我感谢任何反馈可以提供帮助
答案 0 :(得分: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