Java Millisecond Convert millisToDuration(long millis)

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

Description

millis To Duration

License

Open Source License

Declaration

public static String millisToDuration(long millis) 

Method Source Code

//package com.java2s;
/**//from www.  j  a  v  a 2s  . com
 *   Decaf/Decaffeinate ICS server interface
 *   Copyright (C) 2008  Carson Day (carsonday@gmail.com)
 *
 *   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 3 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.
 *
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

public class Main {
    public static String millisToDuration(long millis) {
        long seconds = millis / 1000;
        if (seconds > 0) {
            millis -= seconds * 1000;
        }
        return seconds + "." + millis;
    }
}

Related

  1. milliSecToString(final long mS)
  2. milliSecToTime(double millis)
  3. millisToCycles(double millis, double hz)
  4. millisToDateString(Long Millis)
  5. millisToDays(long millis)
  6. millisToDurationString(long millis)
  7. millisToHMS(long millis)
  8. millisToHMSShort(long millis)
  9. millisToLongDHMS(long duration)