Java Date to Time toSimpleDateTime(Date date)

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

Description

to Simple Date Time

License

Apache License

Declaration

public static String toSimpleDateTime(Date date) 

Method Source Code

//package com.java2s;
/**/* w  w w .  ja va  2 s .  co  m*/
 * Copyright (C) 2010 Peter Karich <jetwick_@_pannous_._info>
 *
 * 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.DateFormat;

import java.text.SimpleDateFormat;

import java.util.Date;

import java.util.TimeZone;

public class Main {
    private static final String simpleDateString = "HH:mm yyyy-MM-dd";

    public static String toSimpleDateTime(Date date) {
        return createSimpleFormat().format(date);
    }

    public static DateFormat createSimpleFormat() {
        DateFormat df = new SimpleDateFormat(simpleDateString);
        df.setTimeZone(TimeZone.getTimeZone("UTC"));
        return df;
    }
}

Related

  1. toExtendedTime(Date date)
  2. toGeneralizedTime(Date date)
  3. toLocalDateTime(Date date)
  4. toLocalTimeString(Date d)
  5. toMT4TimeString(Date date)
  6. toTime(Date... date)
  7. toTimeStr(Date date)
  8. ToTimeStr(Date dt)
  9. toTimeString(Date date)