Here you can find the source of getMillTimestamp()
public static Timestamp getMillTimestamp()
//package com.java2s; //License from project: Apache License import java.sql.Timestamp; public class Main { public static Timestamp getMillTimestamp() { return new Timestamp(System.currentTimeMillis()); }/*from ww w .jav a 2s. c o m*/ }