Here you can find the source of day(Integer time)
public static Integer day(Integer time)
//package com.java2s; //License from project: Apache License public class Main { public static Integer day(Integer time) { int day = (int) Math.floor(time / 86400); return day; }/*from w w w . jav a 2s . c om*/ }