Java Hour Format formatTime(final long time)

Here you can find the source of formatTime(final long time)

Description

Formats a time and returns it as a String .

License

Apache License

Parameter

Parameter Description
time the time to format.

Return

the formated time dd/MM/yyyy hh:mm:ss:SSS .

Declaration

public static final String formatTime(final long time) 

Method Source Code

//package com.java2s;
/**/*from   w  ww . ja va2s  . c o m*/
 * Copyright 2014-2015 SHAF-WORK
 * 
 * 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.
 */

import java.text.SimpleDateFormat;
import java.util.Date;

public class Main {
    /**
     * The default time pattern.
     */
    public static final String DEFAULT_TIME_PATTERN = "dd/MM/yyyy hh:mm:ss:SSS";

    /**
     * Formats a time and returns it as a {@code String}.
     * 
     * @param pattern
     *            the pattern describing the time format.
     * @param time
     *            the time to format.
     * @return the formated time.
     */
    public static final String formatTime(final String pattern, final long time) {
        return new SimpleDateFormat(pattern).format(new Date(time));
    }

    /**
     * Formats a time and returns it as a {@code String}.
     * 
     * @param time
     *            the time to format.
     * @return the formated time {@code dd/MM/yyyy hh:mm:ss:SSS} .
     */
    public static final String formatTime(final long time) {
        return formatTime(DEFAULT_TIME_PATTERN, time);
    }
}

Related

  1. formatTime(Date time)
  2. formatTime(Date time)
  3. formatTime(double s)
  4. formatTime(final Calendar cal)
  5. formatTime(final Date date)
  6. formatTime(int msec, String format)
  7. formatTime(java.util.Date date)
  8. formatTime(long aTime)
  9. formatTime(long ms)