Java Date to Time getTime(java.util.Date date)

Here you can find the source of getTime(java.util.Date date)

Description

get Time

License

Open Source License

Declaration

public static String getTime(java.util.Date date) 

Method Source Code

//package com.java2s;
/**/*  w w  w .  j  a  va  2  s .  c o m*/
 *  Copyright (c) 2011, Eryptogram.java TAIHEIOT and/or its affiliates. All rights reserved.
 *
 *  Licensed under the TAIHEIOT License, Version 1.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  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;

public class Main {

    public static String getTime(java.util.Date date) {
        return formatDateHMS(date);
    }

    public static String formatDateHMS(java.util.Date date) {
        String result = "";
        if (date != null) {
            try {
                SimpleDateFormat dateFormater = new SimpleDateFormat("HH:mm:ss");
                result = dateFormater.format(date);
            } catch (Exception ex) {
                ex.printStackTrace();
            }
        }
        return result;
    }
}

Related

  1. getTime(Date executionTime)
  2. getTime(Date timestamp)
  3. getTime(Date trialTime)
  4. getTime(final Date date, final int day)
  5. getTime(final Date time)
  6. getTime(java.util.Date date)
  7. getTime(java.util.Date date)
  8. getTimeAsMilliSeconds(Date dateTime)
  9. getTimeAsString(Date date)