List of utility methods to do Millisecond to Second
int | getSecondFromMilliSecond(int milliSecond) get Second From Milli Second return (milliSecond) / (1000);
|
long | getSecondsFromMilliSecond(long ms) get Seconds From Milli Second long seconds = ms / 1000 * 1000; return seconds; |