How to convert Milliseconds to “X mins, x seconds” in Java?

后端 未结 27 2138
夕颜
夕颜 2020-11-22 03:59

I want to record the time using System.currentTimeMillis() when a user begins something in my program. When he finishes, I will subtract the current Syste

27条回答
  •  無奈伤痛
    2020-11-22 04:12

    for Android below API 9

    (String.format("%d hr %d min, %d sec", millis/(1000*60*60), (millis%(1000*60*60))/(1000*60), ((millis%(1000*60*60))%(1000*60))/1000)) 
    

提交回复
热议问题