码迷,mamicode.com
首页 > 其他好文 > 详细

毫秒的格式化

时间:2017-04-03 14:31:41      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:nbsp   ret   att   turn   str   ota   else   tostring   for   

14. /**
     * 把毫秒转换成:1:20:30这样的形式
     *
     * @param timeMs
     * @return
     */
    public String stringForTime(int timeMs) {
        int totalSeconds = timeMs / 1000;
        int seconds = totalSeconds % 60;

        int minutes = (totalSeconds / 60) % 60;

        int hours = totalSeconds / 3600;

        mFormatBuilder.setLength(0);
        if (hours > 0) {
            return mFormatter.format("%d:%02d:%02d", hours, minutes, seconds)
                    .toString();
        } else {
            return mFormatter.format("%02d:%02d", minutes, seconds).toString();
        }
    }

毫秒的格式化

标签:nbsp   ret   att   turn   str   ota   else   tostring   for   

原文地址:http://www.cnblogs.com/chengxuxia/p/6661883.html

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