Here you can find the source of formatCalendarForSQLite(Calendar calendar)
public static String formatCalendarForSQLite(Calendar calendar)
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Calendar; public class Main { public static String formatCalendarForSQLite(Calendar calendar) { SimpleDateFormat dateFormatter = new SimpleDateFormat( "yyyy-MM-dd hh:mm:ss.SSS"); return dateFormatter.format(calendar.getTime()); }/*from w w w . j a v a2 s. co m*/ }