Here you can find the source of getSecond(Calendar calendar)
static public int getSecond(Calendar calendar)
//package com.java2s; //License from project: Apache License import java.util.Calendar; public class Main { static public int getSecond(Calendar calendar) { return calendar.get(Calendar.SECOND); }/* w w w .j av a2s. com*/ }