Java Hour Format formatAbsoluteTime(long time)

Here you can find the source of formatAbsoluteTime(long time)

Description

format Absolute Time

License

EUPL

Declaration

public static String formatAbsoluteTime(long time) 

Method Source Code


//package com.java2s;
/*//from  w w  w .jav  a2 s.c  o  m
 * Copyright 2013 SmartBear Software
 * 
 * Licensed under the EUPL, Version 1.1 or - as soon they will be approved by the European Commission - subsequent
 * versions of the EUPL (the "Licence");
 * You may not use this work except in compliance with the Licence.
 * You may obtain a copy of the Licence at:
 * 
 * http://ec.europa.eu/idabc/eupl
 * 
 * Unless required by applicable law or agreed to in writing, software distributed under the Licence is
 * distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
 * express or implied. See the Licence for the specific language governing permissions and limitations
 * under the Licence.
 */

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

public class Main {
    public static String formatAbsoluteTime(long time) {
        return formatAbsoluteTime(new Date(time));
    }

    public static String formatAbsoluteTime(Date date) {
        if (date != null) {
            return new SimpleDateFormat("HH:mm:ss").format(date);
        } else {
            return "N/A";
        }
    }
}

Related

  1. format(String str)
  2. format16ByDate(Date aDate)
  3. format1StringToformat2String(String dateStr)
  4. format2NormalTime(Date date)
  5. format_default(Date time)
  6. formatAddTime(Date addTime)
  7. formatAllDate(Date date)
  8. formatAsCassandraDateTime(Date date)
  9. formatAsDateAndTime(Date date)