在android中获取以毫秒为单位的系统时间

时间:2013-09-17 07:58:05

标签: java android time

想在android中获得时间,以毫秒为单位 Ex 19:57:21:522 。我怎么做?无法找到任何直接的API。

1 个答案:

答案 0 :(得分:12)

尝试使用SimpleDateFormat

http://docs.oracle.com/javase/6/docs/api/java/text/SimpleDateFormat.html

使用大写字母S

的模式
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS");
String currentDateandTime = sdf.format(new Date());