Here you can find the source of day2Millisecode(int days)
public static long day2Millisecode(int days)
//package com.java2s; public class Main { public static long day2Millisecode(int days) { return days * 24 * 60 * 60 * 1000; }/*from www. ja v a 2 s. c o m*/ }