Here you can find the source of setDate(Calendar cal, int year, int month, int day)
private static void setDate(Calendar cal, int year, int month, int day)
//package com.java2s; /******************************************************************************* * Copyright (c) 2015 Open Software Solutions GmbH. * All rights reserved. This program and the accompanying materials * are made available under the terms of the GNU Lesser Public License v3.0 * which accompanies this distribution, and is available at * http://www.gnu.org/licenses/lgpl-3.0.html * /*from w w w . ja va2s. com*/ * Contributors: * Open Software Solutions GmbH ******************************************************************************/ import java.util.Calendar; public class Main { private static void setDate(Calendar cal, int year, int month, int day) { cal.set(Calendar.YEAR, year); cal.set(Calendar.MONTH, month - 1); cal.set(Calendar.DATE, day); } }