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

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

Description

create Date

License

Apache License

Parameter

Parameter Description
month zero based
day one based

Declaration

private static Date createDate(int year, int month, int day) 

Method Source Code

//package com.java2s;
/* ====================================================================
 Licensed to the Apache Software Foundation (ASF) under one or more
 contributor license agreements.  See the NOTICE file distributed with
 this work for additional information regarding copyright ownership.
 The ASF licenses this file to You 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./*w  w w  . j av  a  2  s .com*/
 ==================================================================== */

import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;

public class Main {
    /**
     * @param month zero based
     * @param day one based
     */
    private static Date createDate(int year, int month, int day) {
        return createDate(year, month, day, 0, 0, 0);
    }

    /**
     * @param month zero based
     * @param day one based
     */
    private static Date createDate(int year, int month, int day, int hour,
            int minute, int second) {
        Calendar c = new GregorianCalendar();
        c.set(year, month, day, hour, minute, second);
        c.set(Calendar.MILLISECOND, 0);
        return c.getTime();
    }
}

Related

  1. createDate(int year, int month, int date)
  2. createDate(int year, int month, int day)
  3. createDate(int year, int month, int day)
  4. createDate(int year, int month, int day)
  5. createDate(int year, int month, int day)
  6. createDate(int year, int month, int day)
  7. createDate(int year, int month, int day, int hour, int minute, int second)
  8. createDate(int year, int month, int day, int hour, int minute, int second, int millisecond)
  9. createDateObject(Integer year, Integer month, Integer dayOfMonth, Integer hourOfDay, Integer minute, Integer second, Integer milissecond)