Here you can find the source of convert(Date d)
public static Calendar convert(Date d)
//package com.java2s; import java.util.Calendar; import java.util.Date; public class Main { public static Calendar convert(Date d) { Calendar cal = Calendar.getInstance(); cal.setTime(d);/*from www. j a v a2s .c o m*/ return cal; } }