Here you can find the source of getSysDate()
public static Date getSysDate()
//package com.java2s; import java.sql.Date; import java.util.Calendar; public class Main { public static Date getSysDate() { return new Date(Calendar.getInstance().getTime().getTime()); }/*from w w w. j a v a 2 s.c o m*/ }