Wednesday 10 April 2013

Convert Secons in to mm:ss formatted time

Leave a Comment
/**
  * Converting Second In to MM:SS time
  * @param seconds
  * @author harit Kumar
  * @return time MM:SS
  */
 public String secToTime(int seconds)
 {
  String time= "";
  if(seconds > 59)
  {
   int minutes = seconds/60;
   int sec = seconds%60;
   time = minutes+":"+sec;
  }
  else 
  {
   time = "00:"+seconds;
  }
  return time;
 }

0 comments:

Post a Comment