Here you can find the source of getTimeFromDate(Date date)
public static long getTimeFromDate(Date date)
//package com.java2s; //License from project: Creative Commons License import java.util.Calendar; import java.util.Date; public class Main { public static final long MILLIS_PER_DAY = (24 * 60 * 60 * 1000); public static long getTimeFromDate(Date date) { Date now = Calendar.getInstance().getTime(); long timePortion = now.getTime() % MILLIS_PER_DAY; return timePortion; }//from ww w . j ava2 s . c o m }