我正在尝试在 android 应用程序中获取当前时间 (HH:MM:SEC:MILLISEC)。我正在使用这段代码:
Calendar c = Calendar.getInstance();
int time_start = c.get(Calendar.MILLISECOND);
“用于获取和设置的字段编号,指示一小时内的分钟。例如,在晚上 10:04:15.250,MILLI 为 250。”
我查看了其他方法,但找不到任何指定它会输出所有内容的内容。无论如何我可以获得H:M:Sec:MilliSec吗?还是我只需要做类似的事情
c.get(Calendar.HOUR).get(Calendar.MINUTE).get(Calendar.SECOND).get(Calendar.MILLISECOND).