Java Date Now getCurrentDate(String format)

Here you can find the source of getCurrentDate(String format)

Description

get Current Date

License

Apache License

Declaration

public static String getCurrentDate(String format) 

Method Source Code

//package com.java2s;
/*/*ww w . j a  va  2 s  .c o  m*/
 * Copyright (C) 2012 www.amsoft.cn
 * 
 * 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.Calendar;

import java.util.GregorianCalendar;

public class Main {

    public static String getCurrentDate(String format) {
        String curDateTime = null;
        try {
            SimpleDateFormat mSimpleDateFormat = new SimpleDateFormat(
                    format);
            Calendar c = new GregorianCalendar();
            curDateTime = mSimpleDateFormat.format(c.getTime());
        } catch (Exception e) {
            e.printStackTrace();
        }
        return curDateTime;

    }
}

Related

  1. getCurrentDate(boolean WithDelimeter)
  2. getCurrentDate(Date date)
  3. getCurrentDate(final String form)
  4. getCurrentDate(final String FORMAT)
  5. getCurrentDate(String format)
  6. getCurrentDate(String format)
  7. getCurrentDate(String format)
  8. getCurrentDate(String format)
  9. getCurrentDate(String format)