Here you can find the source of getSecondFromMilliSecond(int milliSecond)
public static int getSecondFromMilliSecond(int milliSecond)
//package com.java2s; public class Main { public static int getSecondFromMilliSecond(int milliSecond) { return (milliSecond) / (1000); }/* w ww.j av a 2 s. c o m*/ }