Java Month Get getMonth(String strDate)

Here you can find the source of getMonth(String strDate)

Description

get Month

License

Open Source License

Declaration

public static final int getMonth(String strDate) 

Method Source Code


//package com.java2s;
//License from project: Open Source License 

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.*;

public class Main {
    private static String defaultDatePattern = "yyyy-MM-dd";
    public static SimpleDateFormat dateTimeFormatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

    public static final int getMonth(String strDate) {
        Calendar cale = toCalendar(strDate);
        if (cale == null) {
            return -1;
        }/*from  w ww . j a  v a 2 s.com*/
        return cale.get(Calendar.MONTH) + 1;
    }

    private static final Calendar toCalendar(String strDate) {
        Calendar cale = null;
        try {
            Date thisDate = dateTimeFormatter.parse(strDate);
            cale = Calendar.getInstance();
            cale.setTime(thisDate);
        } catch (Exception e) {
            return null;
        }
        return cale;
    }

    public static Date parse(String strDate) throws ParseException {
        return parse(strDate, getDatePattern());
    }

    public static Date parse(String strDate, String pattern) {
        SimpleDateFormat df = new SimpleDateFormat(pattern);
        try {
            return df.parse(strDate);
        } catch (ParseException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        return null;
    }

    public static Date parse(Date strDate, String pattern) {
        SimpleDateFormat df = new SimpleDateFormat(pattern);
        try {
            return df.parse(df.format(strDate));
        } catch (ParseException e) {
            e.printStackTrace();
        }
        return null;
    }

    public static String getDatePattern() {
        return defaultDatePattern;
    }

    public static String format(Date date) {
        return format(date, getDatePattern());
    }

    public static String format(Date date, String pattern) {
        String returnValue = "";

        if (date != null) {
            SimpleDateFormat df = new SimpleDateFormat(pattern);
            returnValue = df.format(date);
        }

        return (returnValue);
    }
}

Related

  1. getMonth(String quarters)
  2. getMonth(String sMonth)
  3. getMonth(String startTime)
  4. getMonth(String str_date)
  5. getMonth(String strDate)
  6. getMonth(String tempdat, Locale locale)
  7. getMonth1D()
  8. getMonthAdd(String operateDate, int flag)
  9. getMonthAndDate()