Here you can find the source of randomTimestamp()
public static Timestamp randomTimestamp()
//package com.java2s; //License from project: Apache License import java.sql.Timestamp; import java.util.Date; public class Main { public static Timestamp randomTimestamp() { return new Timestamp(new Date().getTime()); }//from ww w . j a va 2s. c o m }