Here you can find the source of getDateFromLong(long dateLong)
public static Date getDateFromLong(long dateLong)
//package com.java2s; import java.util.Date; public class Main { public static Date getDateFromLong(long dateLong) { if (dateLong == 0) { return null; }/*from w w w.j a va 2 s. co m*/ return new Date(dateLong); } }