int intTime=Integer.valueOf(time);
int h=intTime/3600;
int m=(intTime%3600)/60;
int s=(intTime%3600)%60;
转载于:https://www.cnblogs.com/xiaohaizhuimeng/p/5568079.html
int intTime=Integer.valueOf(time);
int h=intTime/3600;
int m=(intTime%3600)/60;
int s=(intTime%3600)%60;
转载于:https://www.cnblogs.com/xiaohaizhuimeng/p/5568079.html