数字转化成时分秒(二)
生活随笔
收集整理的這篇文章主要介紹了
数字转化成时分秒(二)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
2019獨角獸企業重金招聘Python工程師標準>>>
public static String stringForTime(final long millis) {final int totalSeconds = (int) millis / 1000;final int seconds = totalSeconds % 60;final int minutes = (totalSeconds / 60) % 60;final int hours = totalSeconds / 3600;if (hours > 0) {return String.format("%d:%02d:%02d", hours, minutes, seconds);} else {return String.format("%02d:%02d", minutes, seconds);}}轉載于:https://my.oschina.net/zjchase/blog/132802
總結
以上是生活随笔為你收集整理的数字转化成时分秒(二)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 指纹识别开发包 SourceAFIS
- 下一篇: 数据范围BZOJ 3209(花神的数论题