Here you can find the source of toDate(Calendar calender)
public static Date toDate(Calendar calender)
//package com.java2s; import java.util.Calendar; import java.util.Date; public class Main { public static Date toDate(Calendar calender) { return calender.getTime(); }// w ww .ja va 2s. c om }