java时间格式转化(毫秒 to 00:00)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java时间格式转化(毫秒 to 00:00)相关的知识,希望对你有一定的参考价值。

把秒数转换为%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();
}

以上是关于java时间格式转化(毫秒 to 00:00)的主要内容,如果未能解决你的问题,请参考以下文章

java 我获得单位为毫秒的当前时间,如何转化成年月日小时分格式?

java将时间格式化(急)

oracle 时间格式转换

mysql 时间转换函数

Java获取时间戳精确到年月日时

在java里面,如何得到UTC时间, 时间格式为:Tue Oct 12 00:00:00 UTC 0800 2010