Here you can find the source of Date2Calendar(Date d)
public static Calendar Date2Calendar(Date d)
//package com.java2s; import java.util.Calendar; import java.util.Date; public class Main { public static Calendar Date2Calendar(Date d) { Calendar c = Calendar.getInstance(); c.setTime(d);//from www .j av a 2 s .c om return c; } }