Java 9'da bu daha kolaydır:
Duration elapsedTime = Duration.ofMillis(millisDiff );
String humanReadableElapsedTime = String.format(
"%d hours, %d mins, %d seconds",
elapsedTime.toHours(),
elapsedTime.toMinutesPart(),
elapsedTime.toSecondsPart());
Bu gibi bir dize üretir 0 hours, 39 mins, 9 seconds
.
Biçimlendirmeden önce tam saniyeye yuvarlamak istiyorsanız:
elapsedTime = elapsedTime.plusMillis(500).truncatedTo(ChronoUnit.SECONDS);
0 ise saatleri dışında bırakmak için:
long hours = elapsedTime.toHours();
String humanReadableElapsedTime;
if (hours == 0) {
humanReadableElapsedTime = String.format(
"%d mins, %d seconds",
elapsedTime.toMinutesPart(),
elapsedTime.toSecondsPart());
} else {
humanReadableElapsedTime = String.format(
"%d hours, %d mins, %d seconds",
hours,
elapsedTime.toMinutesPart(),
elapsedTime.toSecondsPart());
}
Şimdi örnek olabiliriz 39 mins, 9 seconds
.
Dakika ve saniye önde sıfır ile her zaman iki basamak yapmak için yazdırmak için 02
, ilgili format belirleyicilerine eklemeniz yeterlidir :
String humanReadableElapsedTime = String.format(
"%d hours, %02d mins, %02d seconds",
elapsedTime.toHours(),
elapsedTime.toMinutesPart(),
elapsedTime.toSecondsPart());
Şimdi örnek olabiliriz 0 hours, 39 mins, 09 seconds
.