Java tutorial
//package com.java2s; //License from project: Open Source License import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Locale; public class Main { public static String formatDate(Calendar calendar) { String format = "yyyy-MM-dd HH:mm:ss"; SimpleDateFormat sdf = new SimpleDateFormat(format, Locale.US); return sdf.format(calendar.getTime()); } }