Java Time Format getDefaultDatetimeFormat()

Here you can find the source of getDefaultDatetimeFormat()

Description

get Default Datetime Format

License

Apache License

Declaration

private static SimpleDateFormat getDefaultDatetimeFormat() 

Method Source Code

//package com.java2s;
/*//from  w w  w .j ava 2s. c  o  m
 * Copyright 2010 Zyeeda Co. Ltd.
 * 
 * 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;

public class Main {
    public static final String DEFAULT_DATETIME_FORMAT_PATTERN = "yyyy-MM-dd hh:mm:ss";

    private static SimpleDateFormat getDefaultDatetimeFormat() {
        return new SimpleDateFormat(DEFAULT_DATETIME_FORMAT_PATTERN);
    }
}

Related

  1. getCalendarByDateTime(int dateTime, String dateFormat)
  2. getCurDateTime(String formatStr)
  3. getCurDateTimeFormat(String Format)
  4. getCurrDatetimeWithDbFormat()
  5. getCurTime(String dateformat)
  6. getDefaultPropertyPageDateTimeFormat()
  7. getEndDate(String time, SimpleDateFormat dateFormat)
  8. getFormat2TimetagStr()
  9. getFormatDate(Date date, boolean ShowTimePart_in)