Here you can find the source of toMinutes(Date fecha)
public static Long toMinutes(Date fecha)
//package com.java2s; //License from project: Open Source License import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static Long toMinutes(Date fecha) { String sFecha = toTime(fecha); long horas = Long.parseLong(sFecha.substring(0, 2)); long minutos = Long.parseLong(sFecha.substring(3)); minutos = horas * 60 + minutos;//from www . j av a 2s. c o m return minutos; } public static String toTime(Date fecha) { String time = "00:00"; if (fecha != null) { SimpleDateFormat sdf = new SimpleDateFormat("HH:mm"); time = sdf.format(fecha); } return time; } }