想在android中获得时间,以毫秒为单位 Ex 19:57:21:522 。我怎么做?无法找到任何直接的API。
答案 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());