Java Millisecond Convert millisecondsToSeconds(long ms)

Here you can find the source of millisecondsToSeconds(long ms)

Description

Convert from milliseconds to seconds.

License

Open Source License

Parameter

Parameter Description
ms The milliseconds to convert

Return

The milliseconds converted into seconds.

Declaration

public static String millisecondsToSeconds(long ms) 

Method Source Code

//package com.java2s;
/*/*ww w  .  ja va  2  s .c  o  m*/
 * #%L
 * Bitrepository Integrity Service
 * %%
 * Copyright (C) 2010 - 2012 The State and University Library, The Royal Library and The State Archives, Denmark
 * %%
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as 
 * published by the Free Software Foundation, either version 2.1 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 Lesser Public License for more details.
 * 
 * You should have received a copy of the GNU General Lesser Public 
 * License along with this program.  If not, see
 * <http://www.gnu.org/licenses/lgpl-2.1.html>.
 * #L%
 */

public class Main {
    /** Milliseconds per second.*/
    public static final int MS_PER_S = 1000;

    /**
     * Convert from milliseconds to seconds.
     * @param ms The milliseconds to convert
     * @return The milliseconds converted into seconds.
     */
    public static String millisecondsToSeconds(long ms) {
        int seconds = (int) (ms / MS_PER_S);
        return seconds + "s";
    }
}

Related

  1. milliSecondsToHMS(long numMillis)
  2. millisecondsToHuman(long ms)
  3. millisecondsToHumanDateWithSeconds(long milliseconds)
  4. millisecondsToHumanTime(long period)
  5. millisecondsToNanoseconds(Long milliseconds)
  6. millisecondsToSecondsString(long millis)
  7. milliSecondsToString(long interval)
  8. millisecondsToString(long milliseconds)
  9. millisecondsToString(long time)