Java Hour Format formatSimpleTimeAndDateString(Date date)

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

Description

format Simple Time And Date String

License

Open Source License

Declaration

public static String formatSimpleTimeAndDateString(Date date) 

Method Source Code

//package com.java2s;
/**//w  ww.j a va2 s. com
 *
 * Copyright (C) 2011-2017 KSFX. All rights reserved.
 *
 * 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 {
    static String simpleTimeAndDatePattern = "yyyy-MM-dd'T'HH:mm:ss";

    public static String formatSimpleTimeAndDateString(Date date) {
        SimpleDateFormat sdf = new SimpleDateFormat(simpleTimeAndDatePattern);
        return sdf.format(date);
    }
}

Related

  1. formatRfc822Date(Date date)
  2. formatRuntime(long runtime)
  3. formatSDate(java.util.Date date)
  4. formatShortDate(java.util.Date date)
  5. formatShortTime()
  6. formatSingleFractionHours(Double updatedHours)
  7. formatSQL(Date date)
  8. formatSqlDateTime(Date value)
  9. formatSSLValid(Date validFrom, Date validTo)