Java Formatter Usage getFormatedTime(double timeInSeconds)

Here you can find the source of getFormatedTime(double timeInSeconds)

Description

get Formated Time

License

Open Source License

Declaration

public static String getFormatedTime(double timeInSeconds) 

Method Source Code


//package com.java2s;
/*//from  w  w  w  . j av a 2s .  c o m
 * Copyright (C) 2010, 2011, 2012 by Arne Kesting, Martin Treiber, Ralph Germ, Martin Budden
 *                                   <movsim.org@gmail.com>
 * -----------------------------------------------------------------------------------------
 * 
 * This file is part of
 * 
 * MovSim - the multi-model open-source vehicular-traffic simulator.
 * 
 * MovSim is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * MovSim 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 Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with MovSim. If not, see <http://www.gnu.org/licenses/>
 * or <http://www.movsim.org>.
 * 
 * -----------------------------------------------------------------------------------------
 */

import java.util.Formatter;

public class Main {
    public static String getFormatedTime(double timeInSeconds) {
        int intTime = (int) timeInSeconds;
        final int hours = intTime / 3600;
        intTime = intTime % 3600;
        final int min = intTime / 60;
        intTime = intTime % 60;
        final StringBuilder stringBuilder = new StringBuilder();
        final Formatter formatter = new Formatter(stringBuilder);
        formatter.format("%02d:%02d:%02d", hours, min, intTime);
        formatter.close();
        return stringBuilder.toString();
    }
}

Related

  1. formatv(String format, Object[] args)
  2. formatZeroDecimals(Number x)
  3. fperfdata(String label, double val, String uom, int warnp, double warn, int critp, double crit, boolean minp, double minv, boolean maxp, double maxv)
  4. generateMacOnIncrease(final String baseMac, final long l)
  5. getCommitCounterStr(final long commitCounter)
  6. getPropertiesString(Properties myProps)
  7. GetRawView(String string)
  8. getRoundedString(double value, int powerOf10)
  9. incrementAlpha(String suppliedPrefix, String lastNumber, int numberLength)