Here you can find the source of extractTimeFromCalendarTime(Calendar time)
public static String extractTimeFromCalendarTime(Calendar time)
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Calendar; public class Main { public static String extractTimeFromCalendarTime(Calendar time) { SimpleDateFormat timeFormatter = new SimpleDateFormat("hh:mm a"); return timeFormatter.format(time.getTime()); }//w w w. ja va 2s .c om }