Here you can find the source of getSecondsByDays(int days)
public static int getSecondsByDays(int days)
//package com.java2s; //License from project: LGPL public class Main { public static int getSecondsByDays(int days) { return days * 24 * 60 * 60; }/* ww w. ja va2 s . c o m*/ }