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

Get System time in Milliseconds in android

想在Android中获得以毫秒为单位的时间,例如19:57:21:522。我该怎么做?找不到任何直接的API。


尝试simpledateformatP></

http:/ / / / 6 docs.oracle.com javaSE /文档/ / / / simpledateformat.html Java API文本P></

在与资本的使用模式P></

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