时间秒转换成时分秒
時間秒轉(zhuǎn)換成時分秒
1.數(shù)據(jù)庫可以把時間差變成秒
語句為
2.java轉(zhuǎn)換秒工具類
參數(shù):Integer seconds(傳入需要轉(zhuǎn)換成小時分鐘秒的數(shù)值)public String getTime(Integer seconds){Integer temp=0;StringBuffer time=new StringBuffer();temp = seconds/3600;time.append((temp<10)?temp+"小時":temp+"小時");temp=seconds%3600/60;time.append((temp<10)?temp+"分鐘":temp+"分鐘");temp=seconds%3600%60;time.append((temp<10)?temp+"秒":temp+"秒");return time.toString();}結(jié)果:0小時13分鐘54秒以上就可以把秒換算成時分秒格式
總結(jié)
- 上一篇: P23 (**) Extract a g
- 下一篇: 【综述】对抗样本生成及攻防技术综述