Here you can find the source of convertToEpochMillis(java.sql.Timestamp ts)
public static long convertToEpochMillis(java.sql.Timestamp ts)
//package com.java2s; //License from project: Open Source License public class Main { public static long convertToEpochMillis(java.sql.Timestamp ts) { return ts.getTime(); }/*from www.ja v a 2 s . c o m*/ }