Here you can find the source of DateToCalendar(Date date)
public static Calendar DateToCalendar(Date date)
//package com.java2s; //License from project: Apache License import java.util.*; public class Main { public static Calendar DateToCalendar(Date date) { Calendar cal = Calendar.getInstance(); cal.setTime(date);//w w w.ja v a2s . com return cal; } }