Java Date Create date(int year, int month, int day)

Here you can find the source of date(int year, int month, int day)

Description

date

License

Mozilla Public License

Parameter

Parameter Description
year the year yyyy
month 1-based index of month
day day of month

Return

the corresponding date

Declaration

public static Date date(int year, int month, int day) 

Method Source Code

//package com.java2s;
/*/* w  ww . j a  va  2 s.  co  m*/
The contents of this file are subject to the Mozilla Public License
Version 1.1 (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.mozilla.org/MPL/
    
Software distributed under the License is distributed on an "AS IS"
basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
License for the specific language governing rights and limitations
under the License.
    
The Original Code is OpenFAST.
    
The Initial Developer of the Original Code is The LaSalle Technology
Group, LLC.  Portions created by The LaSalle Technology Group, LLC
are Copyright (C) The LaSalle Technology Group, LLC. All Rights Reserved.
    
Contributor(s): Jacob Northey <jacob@lasalletech.com>
        Craig Otis <cotis@lasalletech.com>
 */

import java.util.Calendar;

import java.util.Date;

import java.util.TimeZone;

public class Main {
    /**
     * 
     * @param year
     *            the year yyyy
     * @param month
     *            1-based index of month
     * @param day
     *            day of month
     * @return the corresponding date
     */
    public static Date date(int year, int month, int day) {
        Calendar cal = Calendar.getInstance();
        cal.setTimeZone(TimeZone.getTimeZone("GMT"));
        cal.set(year - 1900, month - 1, day);
        return cal.getTime();
    }
}

Related

  1. date(int y, int m, int d)
  2. date(int year, int month, int date)
  3. date(int year, int month, int day)
  4. date(int year, int month, int day)
  5. date(int year, int month, int day)
  6. date(int year, int month, int day, int hour, int minute)
  7. date(int year, int month, int day, int hour, int minute, int second)
  8. longArrayTODateArray(long[] dates_s, SimpleDateFormat dateformat)
  9. longToDate(long time)