Here you can find the source of getMillisecond(Calendar calendar)
static public int getMillisecond(Calendar calendar)
//package com.java2s; //License from project: Apache License import java.util.Calendar; public class Main { static public int getMillisecond(Calendar calendar) { return calendar.get(Calendar.MILLISECOND); }//from w ww . jav a 2s .c om }