Here you can find the source of getDateByInt(long va)
public static Date getDateByInt(long va)
//package com.java2s; import java.util.Date; public class Main { public static Date getDateByInt(long va) { Date result = new Date(); result.setTime(va);/*from www. jav a 2s.co m*/ return result; } }