Java Second asStringInSeconds(long duration)

Here you can find the source of asStringInSeconds(long duration)

Description

as String In Seconds

License

Open Source License

Declaration

public final static String asStringInSeconds(long duration) 

Method Source Code

//package com.java2s;
/*//  w  w w  . j a  va2s .  c  om
 * Copyright (c) 2006-2009 by Dirk Riehle, http://dirkriehle.com
 *
 * This file is part of the Wahlzeit photo rating application.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero 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 Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public
 * License along with this program. If not, see
 * <http://www.gnu.org/licenses/>.
 */

public class Main {
    /**
     *
     */
    public final static String asStringInSeconds(long duration) {
        long seconds = duration / 1000;
        long milliSeconds = duration - (seconds * 1000);
        return String.valueOf(seconds) + "." + asThreeDigits(milliSeconds);
    }

    /**
     *
     */
    public static String asThreeDigits(long id) {
        if (id < 10) {
            return "00" + id;
        } else if (id < 100) {
            return "0" + id;
        } else {
            return "" + id;
        }
    }
}

Related

  1. addSeconds(Date date, int m)
  2. addTimes(String dateTime, int second)
  3. advanceCurrentTimeSeconds()
  4. appendSeconds(StringBuilder time, long seconds)
  5. appendSecondsToEncodeOutput(StringBuilder sb, int sec, int fsec, int precision, boolean fillzeros)
  6. bytesPerSecond(long totalByteCount, long elapsed)
  7. calculateSeconds(long duration)
  8. countSecond(Long time)
  9. currentSecondsPlus(final long seconds)