Java Millisecond Format milliseconds2String(long millis)

Here you can find the source of milliseconds2String(long millis)

Description

milliseconds String

License

Open Source License

Declaration

public static String milliseconds2String(long millis) 

Method Source Code

//package com.java2s;
/**/* w  w w  . j a  va  2  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 milliseconds2String(long millis) {
        long aux = millis / 1000;
        int minutes = (int) aux / 60;
        aux = aux % 60;
        return minutes + ":" + (aux < 10 ? "0" : "") + aux;
    }
}

Related

  1. millis2hms(final long t)
  2. millis2samples(long ms, double sampleRate)
  3. millis2seconds(long millis)
  4. millis2String(long n)
  5. millisAsTicks(int ms)
  6. millisecondsPerTick(final int tps)
  7. milliSecondsSince(long startMillis)
  8. milliSecondsToFormatedString(long timeMillis)
  9. millisecondsToToTimeFormat(long inMs)