Here you can find the source of countSecond(Long time)
public static Long countSecond(Long time)
//package com.java2s; //License from project: Apache License public class Main { public static Long countSecond(Long time) { return time / 1000; }/*from w w w . j a va2 s . co m*/ }