Java Day in Month getDayOfMonth(Date d)

Here you can find the source of getDayOfMonth(Date d)

Description

Get the day of the month from a Date object.

License

Apache License

Parameter

Parameter Description
d the Date object

Return

day of the month (1-based)

Declaration

public static int getDayOfMonth(Date d) 

Method Source Code

//package com.java2s;
/*******************************************************************************
 * Copyright (c) 2010, 2012 Institute for Dutch Lexicology
 *
 * 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./*from  w w  w.j a v a2 s . c  o m*/
 *******************************************************************************/

import java.text.SimpleDateFormat;
import java.util.Date;

public class Main {
    /**
     * Get the day of the month from a Date object.
     *
     * @param d
     *            the Date object
     * @return day of the month (1-based)
     */
    public static int getDayOfMonth(Date d) {
        return Integer.parseInt(new SimpleDateFormat("dd").format(d));
    }
}

Related

  1. firstDayOfNextMonth(String dateFormat)
  2. getCountDayForMonth(int year, int month)
  3. GetDay(int month)
  4. getDayByOfSomeMonth(String curday, int month)
  5. getDayMonth(String dayofmonth)
  6. getDayOfMonth(Date date)
  7. getDayOfMonth(Date p_date)
  8. getDayOfMonth(int dayOfYear, boolean leap)
  9. getDayOfMonth(int month, int year)