Java TimeUnit Usage humanReadableMillis(long millis)

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

Description

Get a human readable time milliseconds

License

Apache License

Parameter

Parameter Description
millis Milliseconds

Return

Human readable time milliseconds

Declaration

public static String humanReadableMillis(long millis) 

Method Source Code

//package com.java2s;
/*/*from   w ww . ja v a2 s.  c  o m*/
 *  Copyright 2012 The SCAPE Project Consortium.
 * 
 *  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.
 *  under the License.
 */

import java.util.concurrent.TimeUnit;

public class Main {
    /**
     * Get a human readable time milliseconds
     * @param millis Milliseconds 
     * @return Human readable time milliseconds
     */
    public static String humanReadableMillis(long millis) {
        return String.format("%d hours %d minutes, %d seconds", TimeUnit.MILLISECONDS.toHours(millis),
                TimeUnit.MILLISECONDS.toMinutes(millis)
                        - TimeUnit.MINUTES.toMinutes(TimeUnit.MILLISECONDS.toHours(millis)),
                TimeUnit.MILLISECONDS.toSeconds(millis)
                        - TimeUnit.MINUTES.toSeconds(TimeUnit.MILLISECONDS.toMinutes(millis)));
    }
}

Related

  1. getValidityAsString(Date endDate)
  2. getWithTimeout(final Future future)
  3. humanizeTime(long hours, long minutes, long seconds)
  4. humanizeToTime(long millis)
  5. humanReadableDuration(Date from, Date to)
  6. isCurrentDateBeforeAndWithinRangeOfDate( Date date, int rangeInDays)
  7. isTheSameDayCheckSummerTime(final Date day1, final Date day2, final boolean escapeYear)
  8. isTimedOut(long start, long timeout)
  9. isValidTTL(final Integer ttlDurationInSeconds)