Here you can find the source of convertTimestampToSec(long timestampInMs)
public static long convertTimestampToSec(long timestampInMs)
//package com.java2s; //License from project: Apache License public class Main { /**/*from w w w .ja v a2 s . co m*/ * Converts specified timestamp in milliseconds to seconds. */ public static long convertTimestampToSec(long timestampInMs) { return Math.round(timestampInMs / 1000d); } }