Here you can find the source of getMinute(Date date)
public static String getMinute(Date date)
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String getMinute(Date date) { SimpleDateFormat _sdf = new SimpleDateFormat("mm"); String _value = _sdf.format(date); return _value; }//from w ww.j a v a 2s. co m }