Here you can find the source of getCalendar(Date date)
public static Calendar getCalendar(Date date)
//package com.java2s; import java.util.*; public class Main { public static Calendar getCalendar(Date date) { Calendar calendar = Calendar.getInstance(); calendar.setTime(date);// www.j a v a 2s. c o m return calendar; } }