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将秒的总和转换成时分秒的格式的主要内容,如果未能解决你的问题,请参考以下文章