With:
Calendar cal = Calendar.getInstance();
Then cal
have the current date and time.
You also could get the current Date and Time for timezone with:
Calendar cal2 = Calendar.getInstance(TimeZone.getTimeZone("GMT-2"));
You could ask cal.get(Calendar.DATE);
or other Calendar constant about others details.
Date and Timestamp are deprecated in Java. Calendar class it isn't.