Here you can find the source of formatDateToLong(Date date, String format)
public static Long formatDateToLong(Date date, String format)
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static Long formatDateToLong(Date date, String format) { if (date == null) { return null; }// ww w . j a va 2s . c o m return Long.valueOf(new SimpleDateFormat(format).format(date)); } }