您的位置:首页 > 移动开发 > Android开发

android通过秒换算成时分秒

2016-02-18 11:36 507 查看
<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 + "";

    }

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  android工具类