毫秒、秒 转成 xx小时xx分钟xx秒
2019-06-19 本文已影响0人
高山之水
int seconds = (3600000 + 720000 + 12000)/ 1000;
System.err.println(seconds / 3600 +"小时"+(seconds % 3600) / 60 + "分钟" + seconds % 3600 % 60 % 60 + "秒");
int seconds = (3600000 + 720000 + 12000)/ 1000;
System.err.println(seconds / 3600 +"小时"+(seconds % 3600) / 60 + "分钟" + seconds % 3600 % 60 % 60 + "秒");