JAVA将秒的总和转换成时分秒的格式

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA将秒的总和转换成时分秒的格式相关的知识,希望对你有一定的参考价值。

public static void main(String[] args) {
String str = "221";
int seconds = Integer.parseInt(str);
int temp=0;
StringBuffer sb=new StringBuffer();
temp = seconds/3600;
sb.append((temp<10)?"0"+temp+":":""+temp+":");

temp=seconds%3600/60;
sb.append((temp<10)?"0"+temp+":":""+temp+":");

temp=seconds%3600%60;
sb.append((temp<10)?"0"+temp:""+temp);

System.out.println(sb.toString());

}

 

以上是关于JAVA将秒的总和转换成时分秒的格式的主要内容,如果未能解决你的问题,请参考以下文章

有啥好方法把秒数转换成时分秒的格式

java 如何将2003-07-16T01:24:32Z格式转换成日期格式年月日时分秒的格式。

PHP函数gmstrftime()将秒数转换成天时分秒

如何把年月日时分秒的字符串转换成日期类型

php 中将完整的年月日时分秒的时间转换成 年月日的形式

js怎么把时间转换成年月日时分秒的形式