Here you can find the source of getMins(Date date)
public static int getMins(Date date)
//package com.java2s; //License from project: Apache License import java.util.Calendar; import java.util.Date; public class Main { public static int getMins(Date date) { Calendar c = Calendar.getInstance(); c.setTime(date);// w w w. j a va 2 s . co m return c.get(Calendar.MINUTE); } }