将秒数转换为时分秒的形式java形式
Posted yangfan326
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将秒数转换为时分秒的形式java形式相关的知识,希望对你有一定的参考价值。
将一个秒数转换为时分秒形式,例如91秒=00:01:31
public class Main { public static void main(String[] args) { System.out.println(transfom(3665)); } public static String transfom(final int time) { int hh = time / 3600; int mm = (time % 3600) / 60; int ss = (time % 3600) % 60; return (hh < 10 ? ("0" + hh) : hh) + ":" + (mm < 10 ? ("0" + mm) : mm) + ":" + (ss < 10 ? ("0" + ss) : ss); } }
供小伙伴们参考!
以上是关于将秒数转换为时分秒的形式java形式的主要内容,如果未能解决你的问题,请参考以下文章