码迷,mamicode.com
首页 > 编程语言 > 详细

将秒数转换为时分秒的形式java形式

时间:2018-09-26 17:51:08      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:print   string   bsp   str   int   转换   nsf   ati   code   

将一个秒数转换为时分秒形式,例如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形式

标签:print   string   bsp   str   int   转换   nsf   ati   code   

原文地址:https://www.cnblogs.com/yangfan326/p/9708334.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!