Here you can find the source of getMillisAsFormattedSeconds(long millis)
Parameter | Description |
---|---|
millis | The milliseconds to format. |
public static String getMillisAsFormattedSeconds(long millis)
//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; } }