Java Hour Format formatDateInTime(Date date)

Here you can find the source of formatDateInTime(Date date)

Description

format Date In Time

License

Apache License

Declaration

public static String formatDateInTime(Date date) 

Method Source Code

//package com.java2s;
/*// ww  w .ja v a 2 s  .  c o  m
 * Copyright (c) 2013 David Boissier
 *
 * 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;
import java.util.Locale;

public class Main {
    private static final SimpleDateFormat LOG_DATE_IN_HOUR_FORMAT = new SimpleDateFormat("HH:mm:ss",
            Locale.getDefault());

    public static String formatDateInTime(Date date) {
        return LOG_DATE_IN_HOUR_FORMAT.format(date);
    }
}

Related

  1. formatDate3DateTimeStr(Date date)
  2. formatDateAddHMS(String strDate)
  3. formatDateAndTime(Date date)
  4. formatDateAsString(Date date)
  5. formatDateForCERMe(Date date, boolean includeTime)
  6. formatDateRfc822(Date date, String timeZoneId)
  7. formatDateString(Date d)
  8. formatDateString(String dateString)
  9. formatDateString2(String str_date)