博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java时间格式转化(毫秒 to 00:00)
阅读量:6671 次
发布时间:2019-06-25

本文共 632 字,大约阅读时间需要 2 分钟。

把秒数转换为%d:%02d:%02d 格式
private String stringForTime(int timeSec) {
int totalSeconds = timeSec; int seconds = totalSeconds % 60; int minutes = totalSeconds / 60 % 60; int hours = totalSeconds / 3600; if (null!=mFormatBuilder){
this.mFormatBuilder.setLength(0); } return hours > 0 ? this.mFormatter.format("%d:%02d:%02d", new Object[]{Integer.valueOf(hours), Integer.valueOf(minutes), Integer.valueOf(seconds)}).toString() : this.mFormatter.format("%02d:%02d", new Object[]{Integer.valueOf(minutes), Integer.valueOf(seconds)}).toString(); }

转载于:https://www.cnblogs.com/zhaoleigege/p/5892150.html

你可能感兴趣的文章
Jhipster_cn中文翻译组
查看>>
Nagios简介与安装(1)
查看>>
centos 本地yum配置
查看>>
使用Vundle来管理vim的插件
查看>>
我们容易忽略的WebDriver 的一些方法
查看>>
一个算法,但是不知道名字,博客记录一下
查看>>
用AsyncTask来实现自己定义的观察者类(加载器)Loader(17)
查看>>
Windows借助脚本实现自动化加域
查看>>
构造函数私有化
查看>>
我的友情链接
查看>>
Linux Shell编程
查看>>
[Django](1093, "You can't specify target table。。错误
查看>>
the App Transport Security policy requires the use
查看>>
归档与反归档
查看>>
Learning Data Structure_5_图(2)
查看>>
HDS G1000和Gx00的端口属性
查看>>
Innodb中mysql如何快速删除2T的大表
查看>>
bash基本命令的使用(笔记)
查看>>
windows_learn 002 用户管理和组策略
查看>>
kafka性能优化
查看>>