Java Millisecond Format getMillisAsFormattedSeconds(long millis)

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

Description

Convert a number of milliseconds into seconds, we format to 2 decimal places, i.e.

License

Apache License

Parameter

Parameter Description
millis The milliseconds to format.

Return

A String formatted as a.xy.

Declaration

public static String getMillisAsFormattedSeconds(long millis) 

Method Source Code

//package com.java2s;
/*/*from www.  jav a  2  s  .  c om*/
 * Copyright 2006 - Gary Bentley
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

public class Main {
    /**
     * Convert a number of milliseconds into seconds, we format to 2 decimal
     * places, i.e. we return a String of the form a.xy.
     *
     * @param millis The milliseconds to format.
     * @return A String formatted as a.xy.
     */
    public static String getMillisAsFormattedSeconds(long millis) {

        long secs = millis / 1000;

        long tenths = (millis - (secs * 1000)) / 100;

        long hundredths = (millis - (secs * 1000) - (tenths * 100)) / 10;

        return secs + "." + tenths + hundredths;

    }
}

Related

  1. formatTimeMillis(long timeMillis)
  2. formatTimestamp(long millis)
  3. formatTimeWithMillis(double time)
  4. getFormatedDateTime(long millis)
  5. getFormattedAPILastAccessDate(long lastAccessTimeMillis)
  6. getMvoDateFormatForMilliSecond()
  7. getReadableMillis(long startMillis, long endMillis)
  8. getReadableMillisTime(long millis)
  9. getTime(long timeInMillis, SimpleDateFormat dateFormat)