android通过秒换算成时分秒

来源:互联网 发布:淘宝生活研究所怎么上 编辑:程序博客网 时间:2024/05/10 12:12
<p style="margin: 10px auto; padding-top: 0px; padding-bottom: 0px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; line-height: 21px;"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 12px;"></span></p><p style="margin: 10px auto; padding-top: 0px; padding-bottom: 0px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; line-height: 21px;">//把秒转换成时分秒</p><p style="margin: 10px auto; padding-top: 0px; padding-bottom: 0px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; line-height: 21px;"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 12px;">public static String cal(int second) {</span></p>        int h = 0;        int d = 0;        int s = 0;        int temp = second % 3600;        if (second > 3600) {            h = second / 3600;            if (temp != 0) {                if (temp > 60) {                    d = temp / 60;                    if (temp % 60 != 0) {                        s = temp % 60;                    }                } else {                    s = temp;                }            }        } else {            d = second / 60;            if (second % 60 != 0) {                s = second % 60;            }        }        return h + "时" + d + "分" + s + "秒";    }

通过秒分别得出多少小时多少分多少秒

public class TimeUtils {
    public static String getHours(long second) {//计算秒有多少小时
        long h = 00;
        if (second > 3600) {
            h = second / 3600;
        }
        return h+"";
    }


    public static String getMins(long second) {//计算秒有多少分
        long d = 00;
        long temp = second % 3600;
        if (second > 3600) {
            if (temp != 0) {
                if (temp > 60) {
                    d = temp / 60;
                }
            }
        } else {
            d = second / 60;
        }
        return d + "";
    }
    public static String getSeconds(long second) {//计算秒有多少秒
        long s = 0;
        long temp = second % 3600;
        if (second > 3600) {
            if (temp != 0) {
                if (temp > 60) {
                    if (temp % 60 != 0) {
                        s = temp % 60;
                    }
                } else {
                    s = temp;
                }
            }
        } else {
            if (second % 60 != 0) {
                s = second % 60;
            }
        }
        return  s + "";
    }


}

0 0
原创粉丝点击