Here you can find the source of calendarToDate(Calendar cal)
public static Date calendarToDate(Calendar cal)
//package com.java2s; //License from project: Apache License import java.util.Calendar; import java.util.Date; public class Main { public static Date calendarToDate(Calendar cal) { return cal.getTime(); }/*from ww w . j a v a 2 s. co m*/ }