Here you can find the source of getCalendar(int d, int m, int y)
public static Calendar getCalendar(int d, int m, int y)
//package com.java2s; /* This file is part of the MayDesk project. * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * 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.*///from ww w .j a v a 2 s . c o m import java.util.Calendar; public class Main { public static Calendar getCalendar(int d, int m, int y) { Calendar cal = Calendar.getInstance(); cal.set(Calendar.DAY_OF_MONTH, d); cal.set(Calendar.MONTH, m); cal.set(Calendar.YEAR, y); return cal; } }