Here you can find the source of long2Timestamp(Long longValue)
public static Timestamp long2Timestamp(Long longValue)
//package com.java2s; //License from project: Open Source License import java.sql.Timestamp; public class Main { public static Timestamp long2Timestamp(Long longValue) { return new Timestamp(longValue); }// w w w .ja va 2s .c om }