Here you can find the source of getSecond(Date date)
Parameter | Description |
---|---|
date | a parameter |
public static int getSecond(Date date)
//package com.java2s; //License from project: Open Source License import java.util.Calendar; import java.util.Date; import java.util.Locale; public class Main { public static final Locale LOCALE_DEFAULT = Locale.getDefault(); public static int getSecond(Date date) { return getCalendar(date).get(Calendar.SECOND); }/*from w ww .j a va 2 s .com*/ public static Calendar getCalendar() { return Calendar.getInstance(); } public static Calendar getCalendar(Date datetime) { return getCalendar(datetime, LOCALE_DEFAULT); } public static Calendar getCalendar(Date datetime, Locale locale) { Calendar cal = Calendar.getInstance(locale); cal.setTime(datetime); return cal; } }