Java Second Convert seconds2String(long seconds)

Here you can find the source of seconds2String(long seconds)

Description

seconds String

License

Open Source License

Declaration

public static String seconds2String(long seconds) 

Method Source Code

//package com.java2s;
/**//from ww w.  java2  s  .  co m
 * aTunes 1.6.0
 * Copyright (C) 2006-2007 Alex Aranda (fleax) alex.aranda@gmail.com
 *
 * http://www.atunes.org
 * http://sourceforge.net/projects/atunes
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

public class Main {
    public static String seconds2String(long seconds) {
        int minutes = (int) seconds / 60;
        seconds = seconds % 60;
        return minutes + ":" + (seconds < 10 ? "0" : "") + seconds;
    }
}

Related

  1. convertToSeconds(String time)
  2. convertToSeconds(String timeStr)
  3. convertToTenthsOfASecond(long epochSeconds, int nanos)
  4. secondConvertToString(final long spentSeconds)
  5. seconds2microseconds(double secs)
  6. seconds2time(long seconds)
  7. seconds2timecents(double seconds)
  8. secondsToCycles(double secs, double hz)
  9. secondsToHHMMSS(int secs)