Java Second Convert convertTimeSecondsToHMS(long longSecs)

Here you can find the source of convertTimeSecondsToHMS(long longSecs)

Description

Method to converts time given in seconds to string representation in days, hours, minutes and seconds

License

Open Source License

Parameter

Parameter Description
longSecs Time in seconds.

Return

String

Declaration

public static String convertTimeSecondsToHMS(long longSecs) 

Method Source Code

//package com.java2s;
/*//ww w.  java  2 s.  co  m
 * Copyright (c) 2010-2015 Pivotal Software, Inc. All rights reserved.
 *
 * 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. See accompanying
 * LICENSE file.
 */

public class Main {
    /**
     * Method to converts time given in seconds to string representation in days,
     * hours, minutes and seconds
     * 
     * @param longSecs
     *          Time in seconds.
     * @return String
     */
    public static String convertTimeSecondsToHMS(long longSecs) {

        long days = longSecs / (60 * 60 * 24);
        long remainder = longSecs % (60 * 60 * 24);

        long hours = remainder / (60 * 60);
        remainder = remainder % (60 * 60);

        long mins = remainder / (60);
        remainder = remainder % (60);

        long secs = remainder;

        String strDaysHrsMinsSecs = "";

        if (days > 0) {
            strDaysHrsMinsSecs += days + " Days ";
        }

        if (hours > 0) {
            strDaysHrsMinsSecs += hours + " Hours ";
        } else {
            strDaysHrsMinsSecs += "0 Hours ";
        }

        if (mins > 0) {
            strDaysHrsMinsSecs += mins + " Mins ";
        } else {
            strDaysHrsMinsSecs += "0 Mins ";
        }

        strDaysHrsMinsSecs += secs + " Secs";

        return strDaysHrsMinsSecs;
    }
}

Related

  1. convertSecondsToTime(int totalSecs)
  2. convertSecondsToTimecode(float totalSeconds)
  3. convertSecondsToTimeUnits(int seconds)
  4. convertTimecodeToSeconds(String timecode)
  5. convertTimemilisecondsToHours(long time)
  6. convertTimeToSeconds(String a_time)
  7. convertToSeconds(String time)
  8. convertToSeconds(String timeStr)
  9. convertToTenthsOfASecond(long epochSeconds, int nanos)