Java Month Format getFirstDayOfNextMonth(String dateFormat)

Here you can find the source of getFirstDayOfNextMonth(String dateFormat)

Description

get First Day Of Next Month

License

Apache License

Declaration

public static String getFirstDayOfNextMonth(String dateFormat) 

Method Source Code

//package com.java2s;
/*//from  w  w  w . jav  a 2s .  co  m
 * Copyright (C) 2013 www.418log.org
 * 
 * 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 getFirstDayOfNextMonth(String dateFormat) {
        String strDate = null;
        try {
            Calendar c = new GregorianCalendar();
            SimpleDateFormat mSimpleDateFormat = new SimpleDateFormat(dateFormat);
            c.roll(Calendar.MONTH, 1);
            c.set(GregorianCalendar.DAY_OF_MONTH, 1);
            strDate = mSimpleDateFormat.format(c.getTime());
        } catch (Exception e) {
            e.printStackTrace();
        }
        return strDate;
    }
}

Related

  1. formatMonthDay(int decimal)
  2. formatMonthlyPeriod(String month)
  3. getAfterByNMonth(String format, int months)
  4. getCurrMonthFirstDaySlashFormat()
  5. getDisplayMonth(Date time, int monthBefore, int monthAfter, SimpleDateFormat format)
  6. getFormatCurMonthAsYYYYMM()
  7. getLastYearMonthYYYYMM()
  8. getMonthFormat(String dateString)
  9. getUpMonthDate(String date, String dateFormat)